Standards for a function name
61 ビュー (過去 30 日間)
古いコメントを表示
MATLAB has a standard that a variable can only consist of digits, letters and underscores
Is there any standard for function names?
3 件のコメント
Adam
2016 年 8 月 25 日
I would assume that the same constraints on variable naming also apply to function naming.
採用された回答
John D'Errico
2016 年 8 月 25 日
Why not read the help for functions? Surely the place to look. under
doc function
I immediately saw this line near the very top:
"Valid function names begin with an alphabetic character, and can contain letters, numbers, or underscores."
In addition, it is a terribly poor idea to use names for functions that are already in use. So calling your new function ones or zeros, or sum, is a really bad idea.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!