Question about YDir, reverse
Mostrar comentarios más antiguos
Hello all,
I was trying to draw the plot and reverse the Y direction of the plot with following code:
P = plot(x, y)
set(P, 'YDir', 'reverse');
However, the matlab command says that
Error using
matlab.graphics.chart.primitive.Line/set
There is no YDir property on the Line class.
Then if I click matlab.graphics.chart.primitive.Line/set, it says
There is no documentation for matlab.graphics.chart.primitive.Line/set
What should I do? Any help will be appreciated.
Thank you
Respuesta aceptada
Más respuestas (1)
Giorgos Papakonstantinou
el 17 de Feb. de 2015
Editada: Giorgos Papakonstantinou
el 17 de Feb. de 2015
It should be
set(gca, 'Ydir', 'reverse')
The plot as mentioned above does not have a property Ydir. However, the axes which the plot belongs to has this property.
1 comentario
mathScience
el 17 de Feb. de 2015
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!