How to add multiple scales on second y axis?

15 ビュー (過去 30 日間)
Yasser Mal
Yasser Mal 2021 年 11 月 26 日
コメント済み: RUDHA 2023 年 5 月 12 日
I want to combine 4 results with different scales and units. like the bottom picture, but with 2 left y and 2 right y axes. is there a way i can do this in matlab?

回答 (1 件)

Yusuf Suer Erdem
Yusuf Suer Erdem 2021 年 11 月 26 日
Hi Yasser, could you try these codes below? Good luck.
clc; clear; close all;
x1 = 0:0.1:40;
y1 = 4.*cos(x1)./(x1+2);
x2 = 1:0.2:20;
y2 = x2.^2./x2.^3;
t = tiledlayout(1,1);
ax1 = axes(t);
plot(ax1,x1,y1,'-r')
ax1.XColor = 'r';
ax1.YColor = 'r';
ax2 = axes(t);
plot(ax2,x2,y2,'-k')
ax2.XAxisLocation = 'top';
ax2.YAxisLocation = 'right';
ax2.Color = 'none';
ax1.Box = 'off';
ax2.Box = 'off';
  8 件のコメント
Yasser Mal
Yasser Mal 2021 年 11 月 28 日
I've been using this code and it's only capable of plotting two sets of data. thanks again
RUDHA
RUDHA 2023 年 5 月 12 日
Not the right answer

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

カテゴリ

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

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by