Back to functions

rectform


rectangular form (Under development)

converts imaginary number from polar form to rectangular form. This is still being developed so please report any issues.

Usage: nerdamer("rectform(z)")


Parameters

expression z Returns the appropriate value if possible otherwise it returns the function with the simplified expression

Returns

Expression

EXAMPLES:
var r = nerdamer('rectform(e^(atan(1/5)*i)*sqrt(26))');
console.log(r.toString());
var t = nerdamer('rectform(e^(atan(-1/26)*i)*sqrt(677))')
console.log(t.toString());
OUTPUT:
Back to functions