Plotting different variable sets on same graph

1 回表示 (過去 30 日間)
notalwayssure
notalwayssure 2022 年 1 月 20 日
コメント済み: notalwayssure 2022 年 1 月 20 日
I have two sets of data; Current1 (x), Power1 (y) & Current2 (x), Power2 (y). Matlab will only plot the first set of variables and not the second set. I believe it has something to do with two different x axis. How do I combine these two into one plot? I want to compare the trends since it is the same type of data in each set.
plot(Current1, Power1,'r')
plot(Current2, Power2,'b')
  1 件のコメント
Ankit
Ankit 2022 年 1 月 20 日
Retain current plot when adding new plots
plot(Current1, Power1,'r');hold on
plot(Current2, Power2,'b');

サインインしてコメントする。

採用された回答

Voss
Voss 2022 年 1 月 20 日
plot(Current1, Power1,'r')
hold on
plot(Current2, Power2,'b')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by