在Matlab中绘制具有一个y轴的多个图形和具有不同y轴的另一个图形

时间:2012-12-11 12:08:20

标签: matlab

我有三个数据集,也有一个错误的向量。我想在同一个数字上绘制它们,数据集在同一个y轴(左侧)上,错误在同一个数字上,但是有一个不同的轴(在右边)。

函数plotyy允许在每个轴上绘制1个绘图,如何在多个绘图中执行此操作?

5 个答案:

答案 0 :(得分:5)

也可以将plotyy()与多行y值一起使用。

根据matlab帮助中的示例:

x = 0:0.01:20;
y1 = [200*exp(-0.05*x).*sin(x);
      300*exp(-0.04*x).*sin(x)];
y2 = [0.8*exp(-0.5*x).*sin(10*x);
      0.6*exp(-0.4*x).*sin(5*x)];
[AX,H1,H2] = plotyy(x,y1,x,y2);

set(get(AX(1),'Ylabel'),'String','Slow Decay') 
set(get(AX(2),'Ylabel'),'String','Fast Decay') 

xlabel('Time (\musec)') 
title('Multiple Decay Rates')

set(H1,'LineStyle','--')
set(H2,'LineStyle',':')

制作下图

Using plotyy with multiple y-values.

答案 1 :(得分:4)

我认为你应该手动创建新的axes

figure(1); clf, hold on

x1 = 0:0.1:5*pi;
y1 = sin(x1)./x1;

x2 = 0:0.1:5*pi;
y2 = x2.^(0.2);

x3 = 0:0.1:5*pi;
y3 = cos(x3);

plot(x1,y1, 'b', 'linewidth', 2)
plot(x2,y2, 'g', 'linewidth', 2)
plot(x3,y3, 'k', 'linewidth', 2)


ax1 = gca;
ax2 = axes('Position', get(ax1,'Position'),...           
           'YAxisLocation','right',...
           'Color' , 'none',...
           'YColor', 'r');
linkaxes([ax1 ax2], 'x')

x4 = x3;
y4 = 0.025*randn(size(y3));

line(x4, y4, 'color', 'r', 'parent', ax2)

输出: enter image description here

答案 2 :(得分:2)

以下是使用滑铁卢的代码,如@natan

所示
x = 0:0.01:20;
y1 = [200*exp(-0.05*x).*sin(x);300*exp(-0.04*x).*sin(x)];
y2 = [0.8*exp(-0.5*x).*sin(10*x);0.6*exp(-0.4*x).*sin(5*x)];
f=GXFigure();
ax=subplot(f,1,1,1);
p1=line(ax, x, y1(1,:), 'LineColor', 'SEAGREEN');
p2=line(p1, [], y1(2,:), 'LineColor', 'TOMATO');
ax.getObject().getView().setXLabel(sprintf('Time Slow Decay %cs', char(181)));
layer1=kcl.waterloo.graphics.GJGraph.createInstance();
ax.getObject().getView().add(layer1);
p3=line(wwrap(layer1), x, y2(1,:), 'LineColor', 'CORNFLOWERBLUE');
p4=line(p3, x, y2(2,:), 'LineColor', 'CRIMSON');
layer1.setXLabel(sprintf('Time Fast Decay %cs', char(181)));
ax.getObject().setTitleText('Multiple Decay Rates');

产生:

enter image description here

有关其他示例,请参阅here

答案 3 :(得分:1)

这是你可以尝试的东西:

% Example data
x = [1 2 3];
yd1 = [1 1 1];
yd2 = [2 2 2];
yd3 = [3 3 3];
ye1 = [0.1 0.2 0.3];
ye2 = [0.2 0.3 0.4];
ye3 = [0.3 0.4 0.5];
% Create two axes
ax1 = axes();
ax2 = axes();
% Plot your data
line(x, yd1, 'Parent', ax1, 'Color', 'b');
line(x, yd2, 'Parent', ax1, 'Color', 'b');
line(x, yd3, 'Parent', ax1, 'Color', 'b');
line(x, ye1, 'Parent', ax2, 'Color', 'r');
line(x, ye2, 'Parent', ax2, 'Color', 'r');
line(x, ye3, 'Parent', ax2, 'Color', 'r');
% Modify axes properties
set(ax1, 'ylim', [-10 4]);
set(ax2, 'Color', 'none', 'YAxisLocation', 'right', 'XTick', []);

enter image description here

我使用line代替plot,因为plot给了我一些 y轴刻度问题。更多信息here

答案 4 :(得分:0)

这是绘制两个y轴的最简单方法,允许您使用与普通绘图相同的标注和边界设置器:ylimylabel等。

来自docs

yyaxis left;
plot(x, y_left);
ylim([0, 100]); % sets the limits for the left y axis
ylabel('left axis');

yyaxis right;
plot(x, y_right);
ylim([0, 100]); % sets the limits for the right y axis
ylabel('right axis');