How to two Y axies plot in app designer?

조회 수: 6 (최근 30일)
Changhui Park
Changhui Park 2017년 12월 15일
댓글: Matthew Suttinger 2018년 2월 28일
Now, I create App in app designer. I want draw graph-plot x, y1, y2.
How to two Y axies plot in app designer?

답변 (1개)

Michal Dobai
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');
Here you can find more info: Graphics Support in App Designer
And this is the result:
  댓글 수: 1
Matthew Suttinger
Matthew Suttinger 2018년 2월 28일
This does not answer the question asked. The example plot you show has only one y axis.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 앱 디자이너를 사용하여 앱 개발하기에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!