Is MATLAB case-sensitive?
17 次查看(过去 30 天)
显示 更早的评论
I would like to know if MATLAB is completely case-sensitive.
采纳的回答
MathWorks Support Team
2021-10-14
编辑:MathWorks Support Team
2021-10-15
Generally speaking, MATLAB is case-sensitive.
MATLAB is case sensitive for function, script, and variable names for all platforms, but name-value pairs can sometimes be insensitive.
For example,
>> plot(1:10,'linewidth',3)
>> plot(1:10,'LineWidth',3)
>> plot(1:10,'LINEWIDTH',3)
works the same way, but
>> Plot(1:10)
won't work.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!