Is MATLAB case-sensitive?
86 views (last 30 days)
Show older comments
I would like to know if MATLAB is completely case-sensitive.
Accepted Answer
MathWorks Support Team
on 14 Oct 2021
Edited: MathWorks Support Team
on 15 Oct 2021
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 Comments
More Answers (1)
Ali Saad
on 20 Jul 2020
MATLAB supports to verify models and designs for embedded
systems???
1 Comment
Dan Hendrickson
on 21 Jul 2020
Ali,
Check out our page on embedded systems:
Best,
Dan
See Also
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!