My plots appear very faint when I print my plots using Ms Word platform. Please How can I make the thickness of my lines appear after printing? Thanks. THE ANSWER WORKS. HOWEVER, THE AXES STILL LOOK FAINT AND PORTIONS OF THEM DISAPPEARED. HOW PLS
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Chuzymatics Chuzymatics
am 9 Nov. 2013
Kommentiert: Chuzymatics Chuzymatics
am 22 Jul. 2014
% Plot of the sine curve
x=0:pi/10:2*pi;
plot(x, sin(x))
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 9 Nov. 2013
Bearbeitet: Azzi Abdelmalek
am 9 Nov. 2013
x=0:pi/10:2*pi;
plot(x, sin(x),'linewidth',4)
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')
0 Kommentare
Weitere Antworten (1)
Walter Roberson
am 15 Nov. 2013
To adjust the axis printing, use
set(gca, 'LineWidth', 4) %for example
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!