Line thickness 'invalid data argument' error
6 ビュー (過去 30 日間)
古いコメントを表示
Can anyone tell me why im getting an "invalid data argument" error when trying to change the line thickness. The commented out line works fine.
%plot(x,f,'r',x,fh,'b')
plot(x,f,'r','LineWidth',3,x,fh,'b','LineWidth',1)
legend('f','fh','Location','best')
0 件のコメント
回答 (1 件)
madhan ravi
2019 年 1 月 26 日
plot(x,f,'r','LineWidth',3)
hold on
plot(x,fh,'b','LineWidth',1)
2 件のコメント
madhan ravi
2019 年 1 月 27 日
That's why reading documentation is encouraged therefore no guessing is needed
参考
カテゴリ
Help Center および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!