hot to plot data on right side of y-axis?

3 views (last 30 days)
hi all:
i want to plot T on right side of y-axis and I on left side of y-axis .
i used plotyy code and yyaxis right/yyaxis left code but still it gives me error .
T=[29.164 30.256 31.186 32.237 33.127 34.137 35.148 37.129 36.119 35.148 34.137 33.127]
I=[116 207 414 611 909 1009 951 909 805 615 311 120];
thanks

Accepted Answer

KALYAN ACHARJYA
KALYAN ACHARJYA on 20 Nov 2020
Edited: KALYAN ACHARJYA on 20 Nov 2020
T=[29.164 30.256 31.186 32.237 33.127 34.137 35.148 37.129 36.119 35.148 34.137 33.127]
I=[116 207 414 611 909 1009 951 909 805 615 311 120];
yyaxis right
plot(T);
yyaxis left
plot(I);

More Answers (0)

Categories

Find more on Two y-axis in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!