Hello Guys, plese Help me !!!
显示 更早的评论
I have this code, and this error :
N = 1 : length(T19);
for k = 1 : length(T19)
Yf(k)=( 1/N ) * [T19(k)+T19(k-1)] ;
end
plot(T19 , 'b');
hold on;
plot (Yf,'r');
ERRORRRRR !!!
Error using /
Matrix dimensions must agree.
PLS HELP ME!
采纳的回答
更多回答(1 个)
Walter Roberson
2019-1-18
0 个投票
you probably need N(k)
2 个评论
Walter Roberson
2019-1-18
Yf(k)=( 1/N(k) ) * [T19(k)+T19(k-1)] ;
Image Analyst
2019-1-18
And
for k = 2 : length(T19)
so you don't get a zero index when you do T19(k-1)
类别
在 帮助中心 和 File Exchange 中查找有关 Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!