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

6 ビュー (過去 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 Center および File Exchange2-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