随时随地阅读更多技术实战干货,获取项目源码、学习资料,请关注源代码社区公众号ydmsq666)
一个容易使用的绘图函数
语法
ezplotf)
ezplotf,[min,max])
ezplotf,[xmin,xmax,ymin,ymax])
ezplotx,y)
ezplotx,y,[tmin,tmax])
ezplot…,figure_handle)
ezplotaxes_handle,…)
h = ezplot…)
描述
1、ezplotf) 在默认区间[-2pi,2pi]上绘制函数f=fx) f 可以是定义函数的M文件名或者一个匿名函数或者一个字符串
2、ezplotf,[min,max]) 在区间min < x < max上绘制函数 f = fx)
3、对于隐式定义的函数f = fx,y):ezplotf)绘制的是 fx,y) = 0 默认区间是 -2pi < x < 2pi, -2pi < y < 2pi.
4、ezplotf,[xmin,xmax,ymin,ymax]) :绘制 fx,y) = 0 区间是xmin < x < xmax and ymin < y < ymax.
5、ezplotf,[min,max]) :绘制 fx,y) = 0 区间:min < x < max and min < y < max.
6、ezplotx,y): 绘制含参函数 x = xt)和y = yt) 默认区间: 0 < t < 2pi.
7、ezplotx,y,[tmin,tmax]): 绘制含参函数 x = xt)和y = yt) 区间:tmin < t < tmax.
8、ezplot…,figure_handle) 在指定的区域,在figure窗口绘制通过handle figure指定的函数
9、ezplotaxes_handle,…) plots into the axes with handle axes_handle instead of the current axes gca).
10、h = ezplot…) returns the handles to a line objects in h.
例子
绘制隐式函数x2 – y4 = 0 区间:[-2pi,2pi]
ezplot‘x^2-y^4’)