1. ホーム
  2. matlab

[解決済み] Matlab: 小図形ウィンドウでYラベルが表示されない

2022-02-15 11:52:29

質問

次のようなコードを使っています。

x = linspace(0, 9, 10);
y1 = x;
y2 = x.^2;
y3 = x.^4;

myfig = figure('Position', [500 500 400 320]); %[left, bottom, width, height]:
ax1 = gca;
hold on
p1 = plot(x,y1,'x--r');
p2 = plot(x,y2,'*-b');

xlabel('blaaa');
ylabel('fooo'); 
xlim([0 max(x)]);
ax2 = axes('Position',get(ax1,'Position'),...
       'XAxisLocation','top',...
       'YAxisLocation','right',...
       'Color','none',...
       'XTickLabel', [],...
       'XColor','k','YColor','k');
ylabel(ax2, 'asdasd');
linkaxes([ax1 ax2],'x');
hold on
p3 = plot(x,y3,'s:g','Parent',ax2);

legend([p1 p2 p3], {'one', 'two', 'three'}, 'Location', 'NorthWest');

一方、右のy-labelは表示されていません。左端と左のy-labelの間のマージンを減らすか、図ウィンドウをリサイズせずに実際のプロットデータの幅を小さくして表示する方法はありませんか?

ありがとうございます。

編集 : 画像を追加しました。

赤のマージンを減らすか、'green' sizeを小さくしてください。

解決方法は?

行を置き換えてみてください。

ax1 = gca;

を使っています。

ax1 = axes('Position',[0.11 0.11 0.75 0.812]);

への 手動 を設定します。 軸の位置/サイズ 正規化単位 .