How to remove whitespace around subplot figures?

29 ビュー (過去 30 日間)
Joren Heit
Joren Heit 2011 年 6 月 29 日
編集済み: Pankaj 2018 年 10 月 8 日
I'm writing a report in LaTeX in which I need to include some MATLAB figures. One of them is a subplot consisting of 16 plots which I ordered (manually, using subplot('Position',...)) in a 6x3 matrix (leaving 2 blancs ofcourse). However, when I export the figure as a png file, there's loads of whitespace on both sides of my figure. I have fumbled around with the PaperPosition parameter but this didn't help me at all. Does anyone know how to crop the 'paper' tightly around my figure?
PS. the method explained on http://nibot-lab.livejournal.com/73290.html doesn't seem to work on a subplot figure as a whole...

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 6 月 29 日
this post might help you.

その他の回答 (2 件)

Jan
Jan 2011 年 6 月 29 日
編集済み: Jan 2017 年 8 月 20 日
I'd expect that PDF or EPS are a better format for embedding graphics in a LaTeX report.
Instead of cropping the PNG, you can increase the space for the subplots:
FigH = figure('DefaultAxesPosition', [0.1, 0.1, 0.8, 0.8]);
[EDITED] The property is called 'DefaultAxesPosition', not 'DefaultAxesPosition*s*'.
  2 件のコメント
Nicholas Richmond
Nicholas Richmond 2017 年 8 月 18 日
In R2017a,
FigH = figure('DefaultAxesPositions', [0.1, 0.1, 0.8, 0.8]);
yields
Error using figure
There is no Positions property on the Axes class.
Jan
Jan 2017 年 8 月 20 日
@Nicholas: This was a typo. See [EDITED].

サインインしてコメントする。


Pankaj
Pankaj 2018 年 10 月 8 日
編集済み: Pankaj 2018 年 10 月 8 日
The reason is, it requires 'ActivePositionProperty' property of axes set to 'outerposition'. By default, subplots have an ActivePositionProperty set to 'position'.

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by