MATLAB: My plots appear very faint when I print the plots using Ms Word platform. Please How to make the thickness of the lines appear after printing? Thanks. THE ANSWER WORKS. HOWEVER, THE AXES STILL LOOK FAINT AND PORTIONS OF THEM DISAPPEARED. HOW PLS

programming

% Plot of the sine curve
x=0:pi/10:2*pi;
plot(x, sin(x))
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')

Best Answer

x=0:pi/10:2*pi;
plot(x, sin(x),'linewidth',4)
xlabel('Angles in Rad')
ylabel('Amp')
title('Sine Wave')