gpt4 book ai didi

matlab - MATLAB 图中不同的右轴和左轴?

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

我在 MATLAB 中使用 plot() 绘制了一条轨迹。我想添加一个带有不同刻度线(线性缩放)的右 y 轴。这可能吗?

最佳答案

this closely related question上有很多好的建议,尽管他们处理的情况比您的情况更复杂。如果你想要一个 super 简单的 DIY 解决方案,你可以试试这个:

plot(rand(1, 10));       % Plot some random data
ylabel(gca, 'scale 1'); % Add a label to the left y axis
set(gca, 'Box', 'off'); % Turn off the box surrounding the whole axes
axesPosition = get(gca, 'Position'); % Get the current axes position
hNewAxes = axes('Position', axesPosition, ... % Place a new axes on top...
'Color', 'none', ... % ... with no background color
'YLim', [0 10], ... % ... and a different scale
'YAxisLocation', 'right', ... % ... located on the right
'XTick', [], ... % ... with no x tick marks
'Box', 'off'); % ... and no surrounding box
ylabel(hNewAxes, 'scale 2'); % Add a label to the right y axis

这是你应该得到的:

enter image description here

关于matlab - MATLAB 图中不同的右轴和左轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2676004/

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