Clear Filters
Clear Filters

how to find Mean Square Error in matlab?

1 view (last 30 days)
Janet
Janet on 12 Mar 2012
Answered: lolo on 12 Jun 2024
I need codings to find MSE

Answers (2)

Andrei Bobrov
Andrei Bobrov on 12 Mar 2012
what MSE
eg
X = randi(1000,10,1);
your_mse = std(X)^2/numel(X)

lolo
lolo on 12 Jun 2024
X = randi(1000,10,1);
your_mse = std(X)^2/numel(X)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!