hot to plot data on right side of y-axis?
3 次查看(过去 30 天)
显示 更早的评论
Engineer Batoor khan mummand
2020-11-20
评论: Engineer Batoor khan mummand
2020-11-20
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
0 个评论
采纳的回答
KALYAN ACHARJYA
2020-11-20
编辑:KALYAN ACHARJYA
2020-11-20
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);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Formatting and Annotation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!