matlab - How to make a fusion of three similar looking graphs into one graph -


i have x-cordinate graphs plotted against time of particular data. more accuracy data taken 3 times n hence have set of 3 graphs. graphs obtained similar not accuracy of 90%..and there no method of each time taking data more accuracy. need set single standard graph incorporates features of 3 (sample graphs obtained) more accuracy. please suggest me method so.

an example of using mean/median:

%# data , noisy estimates t = 1:100; x = cumsum(rand(size(t))-0.5); x1 = x + randn(size(x))*0.7; x2 = x + randn(size(x))*0.9; x3 = x + randn(size(x))*1.2;  %# plot estimates clf subplot(211) plot(t,x1, t,x2, t,x3) legend({'estimate 1','estimate 2','estimate 3'})  %# mean/median across estimates subplot(212) plot(t,mean([x1;x2;x3]), t,median([x1;x2;x3])) hold on, plot(t,x, 'm:', 'linewidth',2), hold off legend({'mean','median','actual'}) 

screenshot

if concerned outliers, see this ideas.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -