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

1 次查看(过去 30 天)
% Plot of the sine curve
x=0:pi/10:2*pi;
plot(x, sin(x))
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-11-9
编辑:Azzi Abdelmalek 2013-11-9
x=0:pi/10:2*pi;
plot(x, sin(x),'linewidth',4)
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')

更多回答(1 个)

Walter Roberson
Walter Roberson 2013-11-15
To adjust the axis printing, use
set(gca, 'LineWidth', 4) %for example

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by