UNPKG
nerdamer-ts
Version:
latest (1.2.0)
1.2.0
javascript light-weight symbolic math expression evaluator
nerdamer.com
mugabe/nerdamer
nerdamer-ts
/
dist
/
Functions
/
Core
/
imaginary
/
rectform.d.ts
8 lines
(7 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Returns the rectangular form of a complex number. Does not work for symbolic coefficients *
@param
{
Symbol
}
symbol
*
@returns
{
Symbol
} */
export
function
rectform
(
symbol:
Symbol
):
Symbol
;
import
{
Symbol
}
from
"../../../Types/Symbol"
;