MAPLE画图

来源:百度知道 编辑:UC知道 时间:2024/06/23 23:19:24
急求用MAPLE画1个高中的数学图,图形要漂亮才行,可以使用SIN,COS等一切高中生会的知识来画1个象美术的比较漂亮的MAPLE图形.
我需要具体过程,从RESTART开始到PLOT结束
急求,和我其中考试有关,谢谢了~

很多,你自己挑一个吧。
下面是一些一般的函数

plot(10*sin(x/20*Pi)*sin(x*Pi),x=-20..20,scaling=constrained);

plot(x^2*(cos(30*x*Pi)+1),x=-1..1,scaling=constrained);

下面是一些参数函数

plot([cos(t)*1.1^t,sin(t)*1.1^t,t=-50..1],scaling=constrained);

plot([cos(t)+4*cos(8*t)/8,sin(t)-4*sin(8*t)/8,t=0..2*Pi],scaling=constrained);

plot([cos(t)+cos(1.3*t)/1.3,sin(t)-sin(1.3*t)/1.3,t=0..20*Pi],scaling=constrained);

plot([cos(t)+cos(3*t)/3,sin(t)-sin(2*t)/2,t=0..2*Pi],scaling=constrained);

plot([cos(t)*(1+cos(t)),sin(t)*(1+cos(t)),t=0..2*Pi],scaling=constrained);