0

我想用数学函数绘制信号图:

x(t)=0.001t^3exp(-0.1t)

我尝试了这段代码,并出现以下错误:

>> t=[0:100];
>> x(t)=0.001*t.^3*exp(-0.1*t)
??? Error using ==> mtimes
Inner matrix dimensions must agree.

我不知道如何修复这个错误,之后我将使用“stem(Y)”来绘制情节。

4

1 回答 1

1

当您应该使用逐元素乘法时,您正在使用向量乘法:

>> x(t)=0.001*t.^3*exp(-0.1*t) % ERROR

对比

>> x(t)=0.001*t.^3.*exp(-0.1*t) % OK
                  ^
                  difference 
于 2013-05-12T12:11:47.080 回答