How can I move data on a graph?
2 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!