Hello Guys, plese Help me !!!
Mostrar comentarios más antiguos
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!
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 18 de En. de 2019
0 votos
you probably need N(k)
2 comentarios
Walter Roberson
el 18 de En. de 2019
Yf(k)=( 1/N(k) ) * [T19(k)+T19(k-1)] ;
Image Analyst
el 18 de En. de 2019
And
for k = 2 : length(T19)
so you don't get a zero index when you do T19(k-1)
Categorías
Más información sobre Simulink en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!