How to two Y axies plot in app designer?

2 visualizaciones (últimos 30 días)
Changhui Park
Changhui Park el 15 de Dic. de 2017
Comentada: Matthew Suttinger el 28 de Feb. de 2018
Now, I create App in app designer. I want draw graph-plot x, y1, y2.
How to two Y axies plot in app designer?

Respuestas (1)

Michal Dobai
Michal Dobai el 15 de Dic. de 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');
Here you can find more info: Graphics Support in App Designer
And this is the result:
  1 comentario
Matthew Suttinger
Matthew Suttinger el 28 de Feb. de 2018
This does not answer the question asked. The example plot you show has only one y axis.

Iniciar sesión para comentar.

Categorías

Más información sobre 앱 디자이너를 사용하여 앱 개발하기 en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!