How to get a sum of a series
Mostra commenti meno recenti
Hello,
I need to get the sum of
Y(t)= A(i)*X(t-i)
where X is a vector of size (100,1). A is a vector of size (3,1)
i=0 to 2 and t= 3 to 100.
Any help is greatly appreciated.
Thanks
Dav
Risposta accettata
Più risposte (2)
Muruganandham Subramanian
il 20 Feb 2014
2 voti
Try using 'cumsum' command
David Young
il 20 Feb 2014
Modificato: David Young
il 20 Feb 2014
If you want the sum over i for each t, then it's
Y = conv(X, A, 'valid');
Categorie
Scopri di più su Mathematics and Optimization in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!