Borrar filtros
Borrar filtros

1-sigma error from data

25 visualizaciones (últimos 30 días)
Markus Similä
Markus Similä el 21 de Jul. de 2022
Respondida: Chunru el 21 de Jul. de 2022
I have several thousand datapoints that follow a normal distribution (not zero centered and values ranging roughly from -500 to 500).
How can I get the interval from mean-1-sigma to mean+1-sigma?

Respuesta aceptada

Chunru
Chunru el 21 de Jul. de 2022
x = 500*randn(10000, 1) + 200; % some data
mx = mean(x);
sx = std(x);
plot(x, 'o'); hold on; grid on;
yline(mx+[-1 0 1]*sx, 'r');

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by