Skip to content

scijs/complex-sqrt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

complex-sqrt

Build Status npm version Dependency Status

Floating point complex square root

Intro

Calculating the complex square root requires some care. The naive method may encounter overflow, underflow, or loss of precision due to the intermediate floating point results. A simple remedy[1] is:

Complex w

Then using w,

Complex sqrt

Usage

require('complex-sqrt')( a, b [, result] )

Calculates sqrt(a + ib) and returns a two-element JS array with the real and imaginary components of the answer.

result is an optional to-element Array or typed array into which output is passed, if provided.

Example

var sqrt = require('complex-sqrt');

var result = sqrt( 1, 2 );

// result = [ 1.272019649514069, 0.7861513777574233 ]

References

[1] Press, William H. Numerical Recipes 3rd Edition: The Art of Scientific Computing. Cambridge University Press, 2007.

Credits

(c) 2015 Ricky Reusser. MIT License

About

Floating point complex square root

Resources

Stars

Watchers

Forks

Packages

No packages published