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

조회 수: 9 (최근 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에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by