How to two Y axies plot in app designer?
조회 수: 6 (최근 30일)
이전 댓글 표시
Now, I create App in app designer. I want draw graph-plot x, y1, y2.
How to two Y axies plot in app designer?
댓글 수: 0
답변 (1개)
Michal Dobai
2017년 12월 15일
You can try this:
plot(app.UIAxes,[1 2 3 4],[3 5 2 6],'-r');
hold(app.UIAxes);
plot(app.UIAxes,[1 2 3 4],[4 6 3 7],'--b');
And this is the result:
댓글 수: 1
Matthew Suttinger
2018년 2월 28일
This does not answer the question asked. The example plot you show has only one y axis.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!