How to flip the data upside down without flipping the axes?
이전 댓글 표시
x = [1 2 3];
y= [6 13 11];
plot(x,y)
set(gca,'Ydir','reverse')
I tried this code but it flips the y axis. I want to keep both axis the same.
댓글 수: 4
KALYAN ACHARJYA
2021년 1월 18일
Looking for: A picture to understand the question?
Indeed.
One could use
plot(x,-y)
but will, of course put them below the y==0 axis.
Alternatively, there's
plot(x,y)
hold on
plot(x,19-y,'r-*')
dpb
2021년 1월 18일
Remove the -y from the second; that was a figment of the copy/paste...it's the same idea that Star-S shows.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!