Toggle navigation
Home
Documentation
Demo
Quick Start
Extending the core
Digging deeper
Examples
Back to functions
nerdamer.tree
Tree
Generates an RPN object which can be evaluated manually.
Usage:
nerdamer.tree()
Parameters
Expression
x
The expression for which you want to generate the RPN
Returns
nerdamer
EXAMPLES:
var x = nerdamer.tree('x^2+2*x+1'); console.log(x);
OUTPUT:
Back to functions
Extending the core
Digging deeper
Examples