Graphs
Numerics supports graphs with following syntax:
plot(f(x);....;g(x),from:to,step)
where
- f(x), g(x) are functions to plot
- from:to is range for x
- step is size of step of x moving from point from to to
Try, for example:
* plot(cos(x)) is the same as plot(cos(x),-100:100,0.5)