What are the rules for naming script files?

조회 수: 88 (최근 30일)
Gurudatha Pai
Gurudatha Pai 2012년 2월 24일
편집: John Kelly 2014년 5월 27일
Hello,
This is perhaps one of those "I-know-the-answer-still-I-ask" questions. Today, I had a strange error in one of my scripts.
??? 17McModel
|
Error: Unexpected MATLAB expression.
The name of the script is "17McModel.m". After a lot of struggling to figure out the error, I realized that Matlab script files names cannot start with a number. I had rename my source files through windows! (Friday exercise of organizing the work folder!)
I tried to look for more information on naming rules for Matlab script and function files. In the Matlab documentation the only place that has any information is,
Matlab > User's Guide > Programming Fundamentals > Programming Tips > Files and Filenames > Naming Functions
and that is it.
Could anybody share more information and tricks-of-trade if you will. Like, what works and what does not, what naming conventions may be faster among other things.

채택된 답변

Walter Roberson
Walter Roberson 2012년 2월 24일
The rules are exactly the same as for variable names: start with a letter, followed by letters or numbers or underscore, maximum 64 characters (excluding the .m extension), and must not be the same as any MATLAB reserved word.
Any timing difference between different file names (that meet the rules) are so small as to be ignorable.
There have been many a flame war fought over file naming conventions, such as "camel case" vs underscores to separate words, whether the names should start with a verb followed by an object ("sort_ledger") or the other way around ("ledger_sort"), whether data-type hints should go at the beginning or the end, and so on. People have quit high-paying jobs over such matters.
None of the conventions matter to MATLAB itself: they only matter to the people writing the code, and the people maintaining the code (usually a much harder task), and to the people paying for the code (you'd be amazed how much gets written into contract specifications.)
  댓글 수: 2
Andrew Newell
Andrew Newell 2012년 2월 24일
I'm partial to camel case, but I can't imagine quitting over the issue!
James Tursa
James Tursa 2012년 2월 25일
63, not 64. I think this is a holdover from the days when a MATLAB variable internally stored its own name within the variable structure itself using a char array of length 64, and one of those was reserved for the null character at the end of a C-style string.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Andrew Newell
Andrew Newell 2012년 2월 24일
Check out Variables and the documentation for isvarname.

카테고리

Help CenterFile Exchange에서 Variables에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by