如何用matlab进行绘制已知函数的图形?实现的方法很多:
1、已知t一系列值,计算对应的x值,然后使用plot函数绘制其图形
%方法一 使用plot函数
figure(1)
t=0:0.5:5;
x=6e7./(1+9*exp(-0.115*t));
plot(t,x)
2、先定义函数,然后使用fplot函数绘制其图形
%方法二 使用fplot函数
figure(2)
x=@(t)6e7/(1+9*exp(-0.115*t));
fplot(x,[0,5])
3、使用ezplot函数绘制其图形
%方法三 使用ezplot函数
figure(3)
syms t
ezplot(6e7/(1+9*exp(-0.115*t)),[0,5]);