Is MATLAB case-sensitive?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 26 Gen 2010
Commentato: Adam Danz
il 5 Dic 2022
I would like to know if MATLAB is completely case-sensitive.
Risposta accettata
MathWorks Support Team
il 14 Ott 2021
Modificato: MathWorks Support Team
il 15 Ott 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.
1 Commento
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!