why does not MATLAB print/save properly?

3 Ansichten (letzte 30 Tage)
Vahid
Vahid am 11 Okt. 2012
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

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Okt. 2012
See the figure property InvertHardcopy
  1 Kommentar
Vahid
Vahid am 12 Okt. 2012
Bearbeitet: Walter Roberson am 12 Okt. 2012
thanks a lot!
figure('InvertHardcopy','off');

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by