IX Parametric Equations

FunctionsBrief Usage Descriptions and Examples
pol Plot the polar function r = f(θ) by "pol;f(θ)".
Examples pol;cos(1.5*x) || pol;1-2*cos(x) || pol;sec(t);itv=(-1,1) || pol;0.5*5/(1-0.5*cos(t)) || pol;2*5/(1+2*sin(t));itv=(0,3.2) || pol;1/(1-sin(t));itv=(3,6.4) ||.
pc2 Plot parametric curves for parametric equations (x(t), y(t)) on the 2D coordinate plane. Options include "pt", "ln", "itv".
Examples pc2;1;t || pc2;t;2 || pc2;t-1;2*t-3 || pc2;2*cos(x);4*sin(x) || pc2;4*cos(t);4*sin(t) || pol;1/(1+cos(t));itv=(-2,2) || pc2;3*cos(z);5*sin(z);pt=[(0,0),(0,4),(0,-4)] || pc2;4*cos(x);3*sin(x);pt=[(-2.6,0),(2.6,0)];ln=[(6,-8),(6,8)];ln=[(-6,-8),(-6,8)] ||.
pc3 Plot parametric curves for parametric equations (x(t), y(t), z(t)) in a 3D space.
Examples pc3;cos(t);sin(t);t || pc3;cos(t);sin(t);2 ||.
ps3 Plot parametric surfaces for parametric equations (x(u,v), y(u,v), z(u,v)) in a 3D space.
Examples ps3;x;y;x*y || ps3;x;y;x**2-y**2 || pc3;2;x;x**2 || ps3;z*cos(t);z*sin(t);z ||.

Back to top