How to plot the average plot out of three plots

11 次查看(过去 30 天)
Hello everyone, i have extracted the data from the excel to plot the graphs .Now , i want to plot the average plot in the same graph .i have three plots in the same graph which each of the three has different 1 column but different rows.i would be grateful if anyone could help me to get the idea of how to plot that graph.Thank you in advance.

采纳的回答

KSSV
KSSV 2020-8-26
You should decide the x-axis same for all the data and make y-values NaN for out of odmain/ extrapolation range and use mean/ nanmean.
  1. Check the dimensions of each data.
  2. Fix the common x-axis data to get the all the data to this x-axes. I would pick the data1, as it covers the more range of x-axes when compared to other data.
  3. Get the data2, data3 to the x-axes domain of data1.
  4. Use interp1 to get the data2, data3 to the x-axes range of data1. The extrapolation points should be set to NaN.
  5. Use nanmean or mean nan flags to get the avarage of data1, data2 and data3.
  6 个评论
KSSV
KSSV 2020-8-27
Why don't you attach all your data in a mat file..

请先登录,再进行评论。

更多回答(1 个)

DEWDROP
DEWDROP 2020-8-28
HERE ,i have attached the excel as well s mat file.Thank you for your continuous help
  2 个评论
KSSV
KSSV 2020-8-28
load("Data.mat")
x1 = data(:,2) ;
y1 = data(:,1) ;
%
x2 = data(:,4) ;
y2 = data(:,3) ;
%
x3 = data(:,6) ;
y3 = data(:,5) ;
plot(x1,y1,x2,y2,x3,y3)
hold on
plot(x1,[y1+y2+y3]/3) ;
legend('data1','data2','data3','average')
DEWDROP
DEWDROP 2020-8-28
Data.mat is not able to open .and also data 2 and data 3 has not the ssame value so we need tto interpolate?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Graphics Performance 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by