flipping the plot, keeping axis same

조회 수: 7 (최근 30일)
Mayank Lakhani
Mayank Lakhani 2015년 8월 5일
댓글: Mayank Lakhani 2015년 8월 5일
hi there, I want to flip my plot, however x axes shoud be the same. That means high fluctuations in frequency spectrum should be at 70GHz.

채택된 답변

Christiaan
Christiaan 2015년 8월 5일
Dear Lakhani,
What you could do (as an example) try is the following:
x=1:10;
y = x.^2;
plot(x,y);hold on;
plot(flip(x),y);hold off
Kind regards, Christiaan

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by