why does not MATLAB print/save properly?

3 次查看(过去 30 天)
I have developed a very straightforward MATLAB code whose sets the background color of the plot to 'blue' and the color of the line to 'white':
x=-10:10;
y=x.^2;
figPath='C:\test.jpg';
% plotting the figure
hFig=figure('PaperType','A4');
line(x,y,'color','w');
box off;
set(gca,'Color','b') ; %color of the area behind the plot
print(hFig,'-djpeg','-r600',figPath);
but what is printed is different from what I have already set, I mean the color of the area behind the plot is white (I set it to blue in my code) and the color of line is black while I set it to white in the code.
I would be grateful if anybody could help me to resolve the problem.
Many thanks in advance, _V

采纳的回答

Walter Roberson
Walter Roberson 2012-10-11
See the figure property InvertHardcopy

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by