|
|
|
Samples:Sample with variables. a=5; y=1; (x-y)^a; A number of functions graphs could be displayed side by side. graph(sin(x)*x, sin(x), x^2) 3D graph sample. graph3d(3/(x^2+y^2)*sin(x^2+y^2))
sin(x)*x differentiation
diff(sin(x)*x, x)
x^x differentiation
diff(x^x, x)
It is possible to manage graph smoothness by changing number of points where function calculated.
z = x^2+y^2-4;
graph3d(z, points=8);
graph3d(z, points=30);
|