Matlab在选定的时间间隔内绘制函数

时间:2017-05-03 17:06:59

标签: matlab

我想在选定的时间间隔内绘制此函数:

F(d) = ( (1 - e^(-d^(2)) / d ) 

我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

fplotfplot(f,xinterval)

一起使用
f = @(d) (1 - exp(-d.^(2)) ./ d );
xinterval = [-1 1];
fplot(f,xinterval);

enter image description here

如果你有旧版本的MATLAB,你可以使用ezplot