6

3 つのデータ セットと、それらのエラーのベクトルがあります。データセットが同じ y 軸 (左側) にあり、エラーが同じ図にあるが別の軸 (右側) にある同じ図にそれらをプロットしたい。

関数plotyyを使用すると、各軸の 1 つのプロットに対して実行できますが、複数のプロットに対して行うにはどうすればよいですか?

4

5 に答える 5

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)

出力: ここに画像の説明を入力

于 2012-12-11T14:03:40.550 に答える
2

@natanによって提案されたWaterlooを使用したコードは次のとおりです

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');

これは以下を生成します:

ここに画像の説明を入力してください

他の例については、こちらをご覧 ください

于 2012-12-12T20:01:05.840 に答える
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', []);

ここに画像の説明を入力

y軸の目盛りに問題があるため、line代わりにを使用しました。詳細はこちらplotplot

于 2012-12-11T14:31:15.647 に答える