Back to functions

polarform


polar form

converts imaginary number from rectangular form to polar form.

Usage: nerdamer("polarform(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('polarform(b*x+x*c*i)');
console.log(r.toString());
var t = nerdamer('polarform(5+i)')
console.log(t.toString());
OUTPUT:
Back to functions