How to plot Average of several plots( combined using copyobj) ?

64 Ansichten (letzte 30 Tage)
Joana
Joana am 19 Aug. 2018
Kommentiert: dpb am 19 Aug. 2018
Hi Everyone, I have data sets of multiple subjects, and i plotted the desired output of each subject in separate plots. Then i wanted to compare them and plot in one figure, so i am using 'Copyobj' for that. It does the job. Now i want to plot the 'Average' of all the subject's output plots. Is it possible to do this when i have combined the separate plots (output of separate programs)?
Thanks

Antworten (1)

dpb
dpb am 19 Aug. 2018
Not without using the data to compute the average, no...
But using copyobj to combine the plots is the hard way to go about creating the plot...just either
  1. Plot first subject
  2. Add values to running sum
  3. hold on % to add to existing plot
  4. Plot next subject
  5. Add values to running sum
  6. Repeat 4., 5. for rest of subjects
  7. Divide sum by N subjects
  8. Plot mean
Alternatively, read each subject data into array (say S) storing by column for the N subjects, compute
S(:,end+1)=mean(S,2); % put mean in last column
plot(S) % plot, including mean
Above plots against ordinal value; if is an X abscissa, use it as vector or array as well.
  2 Kommentare
Joana
Joana am 19 Aug. 2018
Hi Yes i had this idea, but the data is in GB, so i can't hold on to load the data from 10 subjects and then add it in total. So is there any other possible way.?
dpb
dpb am 19 Aug. 2018
The first uses only a single dataset at a time plus the running sum; you don't give any hint of how the data are obtained/organized/etc. so not much to do for writing specific code but
d=dir('appropriatewildcard'); % get subject files
N=length(d); % how many are there
x=importdata(d(1).name); % read first
S=x; % save running sum
plot(x) % plot first
hold on % to add more
for i=2:N % iterate over rest
x=importdata((i).name);
plot(x)
S=S+x; % accumulate sum
end
S=S/N; % compute mean
plot(S) % add to plot
Add labels, etc., etc., etc., ... as desired

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by