plot confidence interval of a signal

87 visualizaciones (últimos 30 días)
Ase U
Ase U el 8 de Ag. de 2018
Comentada: RADWAN A F ZEYADI el 19 de En. de 2022
Hi all,
i have a signal so it's just data, that i load on Matlab and I have to plot 95% confidence interval according to student t-distribution of my signal. Exactly like photo, that i added. When i am reading some solutions about that, i am confuse because i am not good about statistics. If you help me, at least how can i start to make something, i would be very appreciated that.
Thank you!
  1 comentario
mpho bosupeng
mpho bosupeng el 9 de En. de 2022
Hello
I suggest using the confplot. Access here confplot. Really easy
example:
x = 1:0.1:10;
y = sin(x);
e = std(y)*ones(size(x));
confplot(x,y,e)
As long as you have x and y you will be fine even if you import from excel

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 8 de Ag. de 2018
In order to calculate the 95% confidence intervals of your signal, you first will need to calculate the mean and *|std| (standard deviation) of your experiments at each value of your independent variable. The standard way to do this is to calculate the standard error of the mean at each value of your independent variable, multiply it by the calculated 95% values of the t-distribution (here), then add and subtract those values from the mean. The plot is then straightforward. (The tinv function is in the Statistics and Machine Learning Toolbox.)
Example
x = 1:100; % Create Independent Variable
y = randn(50,100); % Create Dependent Variable ‘Experiments’ Data
N = size(y,1); % Number of ‘Experiments’ In Data Set
yMean = mean(y); % Mean Of All Experiments At Each Value Of ‘x’
ySEM = std(y)/sqrt(N); % Compute ‘Standard Error Of The Mean’ Of All Experiments At Each Value Of ‘x’
CI95 = tinv([0.025 0.975], N-1); % Calculate 95% Probability Intervals Of t-Distribution
yCI95 = bsxfun(@times, ySEM, CI95(:)); % Calculate 95% Confidence Intervals Of All Experiments At Each Value Of ‘x’
figure
plot(x, yMean) % Plot Mean Of All Experiments
hold on
plot(x, yCI95+yMean) % Plot 95% Confidence Intervals Of All Experiments
hold off
grid
This should get you started.
  15 comentarios
Star Strider
Star Strider el 25 de Jun. de 2021
I suggest the cov function.
RADWAN A F ZEYADI
RADWAN A F ZEYADI el 19 de En. de 2022
@Star Strider in my case also i want to compute CI for two vectors with dimension 51*1 you can see the picture that i have upload it

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by