How do I print the final value of RMSE on the command line?

2 views (last 30 days)
I am trying to denoise using deep learning based on the following.
How do I print the final value of RMSE on the command line?

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 30 Nov 2020
data=sqrt(mean((data1-data)^2))
fprintf('The RMSE Vale: %f',data);
Please modify, as per requirements

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!