How can I create another y-axis on right side?

1 回表示 (過去 30 日間)
Umang Dongre
Umang Dongre 2019 年 2 月 26 日
コメント済み: Umang Dongre 2019 年 2 月 26 日
How can I create another two axis in same figure?
x=A0006_charge(:,1);
y=A0006_charge(:,2);
a=A0006_charge(:,3);
z=A0006_charge(:,4);
plot(a, x, a, y, a, z);
I tried "yyaxis right" but its not working.

採用された回答

Stephan
Stephan 2019 年 2 月 26 日
編集済み: Stephan 2019 年 2 月 26 日
Hi,
use yyaxis. For example:
x=A0006_charge(:,1);
y=A0006_charge(:,2);
a=A0006_charge(:,3);
z=A0006_charge(:,4);
yyaxis left
plot(a, x, a, y)
yyaxis right
plot(a, z);
Best regards
Stephan
  1 件のコメント
Umang Dongre
Umang Dongre 2019 年 2 月 26 日
Thank You,
I tried this but it saying ...
Undefined function 'yyaxis' for input arguments of type 'char'.
Error in Charge (line 5)
yyaxis left

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by