how to print figure in jpg without white margin
1 ビュー (過去 30 日間)
表示 古いコメント
x = 0:pi/5:2*pi;
y = sin(x).*exp(-x);
figure('Visible', 'off', 'PaperUnits','centimeters', 'PaperPosition', [0 0 32 8])
plot(x,y,'--k','LineWidth',1)
xlabel('Acc /g')
ylabel('T /s')
ax = gca;
ax.FontSize = 16;
print('figure01','-djpeg', '-r0')
the script give me a figure like this 

however, i don't want the white margins in left and right of the printed figures
what should i do?
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Find more on Graphics Object Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!