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
3 ビュー (過去 30 日間)
古いコメントを表示
Chuzymatics Chuzymatics
2013 年 11 月 9 日
コメント済み: Chuzymatics Chuzymatics
2014 年 7 月 22 日
% 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 件のコメント
採用された回答
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')
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2013 年 11 月 15 日
To adjust the axis printing, use
set(gca, 'LineWidth', 4) %for example
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!