Integrated Mean Square Error of an Error Signal
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone,
I have an error signal curve, e=X-Xref. How can I calculate the integrared mean square error?
0 Kommentare
Antworten (1)
Star Strider
am 14 Mär. 2021
The mean square value of any vector ‘v’ is:
MS = mean(v.^2);
Thje root-mean-square is just the square root of that:
RMS = sqrt(mean(v.^2));
.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Time-Frequency Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!