摘要: 极限 limit(f) limit(f,x,a) limit(f,x,a,'left') limit(f,x,inf) //注意要 syms x //使用 pause 和 hold on 来打断点 //求多元函数的话就老老实实地去极限嵌套吧....但要防极限不存在的情况 //并非所有极限都能求出来, 阅读全文
posted @ 2023-03-14 12:21 wxk123 阅读(176) 评论(0) 推荐(0)
摘要: 画极坐标函数图像 polar(theta,rho,s) //example theta=linspace(0,2*pi,10000) rho=sin(2*theta).*cos(2*theta) polar(theta,rho,'g') 空间曲线 plot3(x,y,z,s) mesh(x,y,z) 阅读全文
posted @ 2023-03-14 11:22 wxk123 阅读(1226) 评论(0) 推荐(0)