Integrated Mean Square Error of an Error Signal
4 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I have an error signal curve, e=X-Xref. How can I calculate the integrared mean square error?
0 个评论
回答(1 个)
Star Strider
2021-3-14
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time-Frequency Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!