필터 지우기
필터 지우기

Question about YDir, reverse

조회 수: 96 (최근 30일)
mathScience
mathScience 2015년 2월 17일
댓글: mathScience 2015년 2월 17일
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

채택된 답변

Stephen23
Stephen23 2015년 2월 17일
편집: Stephen23 2015년 2월 17일
You can read all of the chartline Properties , and there is no mention of reverse anywhere on the page.
Perhaps you were thinking of the axes Properties , which has the option 'reverse' for any of XDir, YDir, and ZDir. Exactly how you do this depends on your code, but you could try this for a start:
set(gca,'YDir','reverse')

추가 답변 (1개)

Giorgos Papakonstantinou
Giorgos Papakonstantinou 2015년 2월 17일
편집: Giorgos Papakonstantinou 2015년 2월 17일
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
mathScience
mathScience 2015년 2월 17일
Thank you! it works!

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

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by