Why does my printed figure have poor resolution?
Afficher commentaires plus anciens
I specify the same properties in two plots of the following MATLAB script. However, the second plot seems to be using a different renderer and produces a poor resolution printout. Also, the title of the second plot overlaps the top line of the figure box. Here is an example that demonstrates the problem:
x = 0:0.01:10;
y1 = sin(x);
y2 = cos(x);
y3= tan(x);
t = [1:600];
plot(x(t), y1(t),'k.', x(t), y2(t),'k.', x(t), y3(t),'k.', 'MarkerSize', 3);
title('Test Plot', 'FontName', 'Arial', 'FontSize', 18);
axis([0 10 -1 1]);
print
figure
plot(x, y1,'k.', x, y2,'k.', x, y3,'k.', 'MarkerSize', 3);
title('Test Plot2', 'Fontname', 'Arial', 'FontSize', 18)
axis([0 10 -1 1]);
print
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Graphics Performance dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!