how to process equation in summation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
nkumar
am 25 Sep. 2014
Beantwortet: David Sanchez
am 25 Sep. 2014
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

0 Kommentare
Akzeptierte Antwort
David Sanchez
am 25 Sep. 2014
Tl = 0; % initilization of summation
alphaNs = 2;
for k = 01:alphaNs
Tl = Tl + abs(x(k)^2);
end
Tl = (1/alphaNs)*Tl;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!