Printing on A3 paper to true scale
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like to print onto A3 landscape paper a circle of exactly 28cm diameter, and after looking through answers to similar questions, am confused about which combination of figure, paper and axis properties to specify to make this happen. The figure is larger than my screen. Here's the code to draw the circle, theta = [0:10:360]; x=14*cosd(theta)+14; y=14*sind(theta)+14; plot(x,y,'-r') axis tight K>> daspect([1 1 1]); figure=gcf; figure.Units='centimeters';
How do I print this out to the correct size of 28 cm? Thanks!
0 commentaires
Réponses (1)
Voir également
Catégories
En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!