Borrar filtros
Borrar filtros

reverse the y axis

5 visualizaciones (últimos 30 días)
Nidhi SRIVASTAVA
Nidhi SRIVASTAVA el 6 de Jun. de 2017
Comentada: Walter Roberson el 6 de Jun. de 2017
I have a step function plot in matlab. I want to reverse the y axis so that the initial value is at the top and also the x axis start from that point only.

Respuesta aceptada

Walter Roberson
Walter Roberson el 6 de Jun. de 2017
set(gca, 'YDir', 'reverse')
  2 comentarios
Nidhi SRIVASTAVA
Nidhi SRIVASTAVA el 6 de Jun. de 2017
Thank you for your answer. I have used stairs for my code to make step function. Could you please suggest me any other way to make step function with the y axis reversed? Thanks
Walter Roberson
Walter Roberson el 6 de Jun. de 2017
  • You could adjust the axes CameraPosition and CameraTarget so that you are looking at the scene from "below" so that the axes is reversed from the normal
  • You could create a hggroup() that you parent your stairs plot in, and then use hgtransform() to reverse top and bottom for it
  • Instead of stairs(Y) you could stairs(SomeConstant - Y)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by