Is MATLAB case sensitive in all aspects?
古いコメントを表示
t=0:1;
plot(sin(t),'linewidth',3)
If MATLAB is case-sensitive then how "linewidth" is accepted instead of "LineWidth"?
採用された回答
その他の回答 (1 件)
madhan ravi
2019 年 2 月 3 日
編集済み: madhan ravi
2019 年 2 月 3 日
1 投票
Yes. Since it’s a character vector , inside the function there could be some functions internally used to match it but the commands for instance plot() etc etc are case sensitive. A detailed discussion can be found in https://stackoverflow.com/questions/2775263/how-to-deal-with-name-value-pairs-of-function-arguments-in-matlab .
カテゴリ
ヘルプ センター および File Exchange で Simulink Design Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!