我想用数学函数绘制信号图:
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)”来绘制情节。
我想用数学函数绘制信号图:
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)”来绘制情节。