How to two Y axies plot in app designer?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Michal Dobai
am 15 Dez. 2017
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 Kommentar
Matthew Suttinger
am 28 Feb. 2018
This does not answer the question asked. The example plot you show has only one y axis.
Siehe auch
Kategorien
Mehr zu 앱 디자이너를 사용하여 앱 개발하기 finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!