Integrated Mean Square Error of an Error Signal
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello everyone,
I have an error signal curve, e=X-Xref. How can I calculate the integrared mean square error?
0 Commenti
Risposte (1)
Star Strider
il 14 Mar 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 Commenti
Vedere anche
Categorie
Scopri di più su Time-Frequency Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!