js-math-complex
js-math-complex copied to clipboard
Complex Number in JavaScript
Results
3
js-math-complex issues
Sort by
recently updated
recently updated
newest added
If you run the demo, it throws an error displaying `atan2 is not a function`
It would be nice to be able to do: ``` js x = Math.Complex(1,2); // Complex {re: 1, im: 2, …} y = Math.Complex(2,3); // Complex {re: 2, im: 3,...