请输入您要查询的百科知识:

 

词条 ezplot
释义

MATLAB函数ezplot简介

ezplot功能简介:

在matlab的命令窗口中键入help ezplot命令或者doc ezplot即可获得本函数的帮助信息。EZPLOT即:Easy to use function plotter。它是一个易用的一元函数绘图函数 。特别是在绘制含有符号变量的函数的图像时,ezplot要比plot更方便。因为plot绘制图形时要指定自变量的范围,而ezplot无需数据准备,直接绘出图形。

ezplot的调用格式:

1、ezplot(fun)

2、ezplot(fun,[min,max])

3、ezplot(fun2)

4、ezplot(fun2,[xmin,xmax,ymin,ymax])

5、ezplot(fun2,[min,max])

6、ezplot(funx,funy)

7、ezplot(funx,funy,[tmin,tmax])

8、ezplot(...,figure_handle)

9、ezplot(axes_handle,...)

10、h = ezplot(...)

相关函数:plot、fplot

应用示例

例一:这个例子通过绘制正弦图形来对ezplot和plot进行比较。使用plot绘制正弦图形的命令语句:

x=[-pi:0.01:pi];

y=sin(x);

plot(x,y)

使用fplot(针对建立的数值函数):

y=inline('sin(x)');

fplot(y,[-pi,pi])

使用ezplot(针对符号函数):

syms x;

y=sin(x);

ezplot(y)

例二:

绘制y=x^2;的图形,其中x为符号变量。syms x;

y=x^2;

ezplot(y)

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/11 11:25:06