gpt4 book ai didi

matlab - 在 Matlab 中如何交换现有绘图的水平轴和垂直轴

转载 作者:太空宇宙 更新时间:2023-11-03 19:20:12 25 4
gpt4 key购买 nike

假设我有向量 x 和 y,我知道我可以执行 plot(x,y)plot(y,x) 来实现我想要的。但是,我的问题很明确:如果我已经在图中创建了一个图作为 plot(x,y),我如何以编程方式交换水平轴和垂直轴,以便有效地表达 >绘图(y,x)

最佳答案

有趣的问题 +1。以下示例显示如何交换当前图形的 xy 轴:

X = (1:100)'; %# Create x axis data
Y = randn(100, 1); %# Create y axis data
plot(X, Y); %# Plot the data
view(-90, 90) %# Swap the axes
set(gca, 'ydir', 'reverse'); %# Reverse the y-axis (Optional step)

此外,到 Matlab Central 的相关链接是 here .

关于matlab - 在 Matlab 中如何交换现有绘图的水平轴和垂直轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16138467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com