fig.InvertHardcopy = 'off'を追加するとemfファイルの背景が透明になります。
plot(1:10)
fig=gcf;
fig.Color='none'
fig.InvertHardcopy = 'off';
ax=gca;
ax.Color='none'
saveas(fig,'test.emf')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!