flipping the plot, keeping axis same
21 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
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 Center 和 File Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!