MATLAB: Reguarding ‘assignin’ acceptable name for variable.

assigninerrorinvalid variable nameMATLABspecific characters that give errorvariable name

Hello everybody,
Quick question, are there any specific characters that give error for 'assignin' in the variable name?
I am asking as the acceptability of a variable name looks random. In the latest trial I tried assigning a variable name as: '280617_SC_Ger' but I got an error. If I change this to 'SCGer_280617' it works.
Any Ideas?
Thank you for your answers!
%% Part of code of interest: assignin('base',sprintf('%s_Raw_Data',varname), output)
%% Error: Error using assignin Invalid variable name "280617_SC_Ger_Raw_Data" in ASSIGNIN.

Best Answer

In MATLAB the variable names never start with numbers ...it should be always a character....after character you can use number.
280617_SC_Ger this as a variable name not allowed, because it starts with number...
SCGer_280617 this as a variable name allowed, as it starts with character....