chencaiyun 发表于 2009-3-5 17:03

MATLAB中怎么画函数图形

我想画一个y=1/2*(5/t-5.6)*exp(-0.17*5/t)的图形,我按照书中的方法写,但总出现错误!

zrs0012003 发表于 2009-3-16 16:25

使用命令:ezplot('y-1/2*(5/t-5.6)*exp(-0.17*5/t)')可以画出!试试看!
以后请在相应的论坛版块发贴!

hanbobobi 发表于 2009-4-19 10:56

这很简单的,你忘了定义步长吧?

longrz 发表于 2009-4-20 17:45

n=1:1:100;
dt=1;
t=n*dt;
y=0.5*(5./t-5.6).*exp(-0.17*5./t);
plot(t,y);

fengxingyun 发表于 2009-4-20 18:50

定义自变量,然后写函数

kingbinta 发表于 2009-5-17 23:11

没事路过踩踩 看看世界怎么样
页: [1]
查看完整版本: MATLAB中怎么画函数图形