How can I move data on a graph?

5 views (last 30 days)
Pul
Pul on 7 May 2021
Answered: Cris LaPierre on 7 May 2021
Hi everyone,
This is my graph. I should put the red data at the same weight of orange data in the graph.
The variable 7 is the Standard Deviation while the variable 8 is the average.
I tried in this way for the first red data, but it didn't work:
C=Var.8 % AVERAGE
for i =4041
C(i)=C(i)+99.658;
end
D=Var.7 %SD.DEV
for i =4041
D(i)=D(i)+99.658;
end
plot(example_daily.Time(:,1),[example_daily.Var5(:,1) C D]);
Thank you in advance.

Answers (1)

Cris LaPierre
Cris LaPierre on 7 May 2021
Perhaps you want to use errorbar to create you plot instead of plot.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!