MATLAB: Standards for a function name

function

MATLAB has a standard that a variable can only consist of digits, letters and underscores
Is there any standard for function names?

Best Answer

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.