How to define LineSpec in one variable?
46 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone,
I would like to specify the line properties in one variable. For example, the code
plot([1,2],[1,2],'Color','black','LineWidth',2);
should be replaced by a code of the form (which produces an error):
LineSpec = {'Color','black','LineWidth',2};
plot([1,2],[1,2],LineSpec);
Thanks for any help!
plot([1,2],[1,2],'Color','black','LineWidth',2);
0 件のコメント
採用された回答
Walter Roberson
2020 年 12 月 7 日
LineSpec = {'Color','black','LineWidth',2};
plot([1,2],[1,2],LineSpec{:});
その他の回答 (0 件)
参考
カテゴリ
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!