how to process equation in summation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
i have a code kindly tell how to process,the signal is a sine signal and i want to process as like the equation in the image
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145516/image.bmp)
0 Commenti
Risposta accettata
David Sanchez
il 25 Set 2014
Tl = 0; % initilization of summation
alphaNs = 2;
for k = 01:alphaNs
Tl = Tl + abs(x(k)^2);
end
Tl = (1/alphaNs)*Tl;
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!