MATLAB: Titel for tables with spce between the words

MATLABtablevaribles with space

I would like to have spece between subject and number, but the error is, that is not allowed to have space in variables. Is there a possibility? I wouldn't like to have underscores.
table_subjects = cell2table(table(1:end,:),'VariableNames',{'Subject number' 'Gender' 'Age' 'Weight' 'Height' 'Systolic_pressure' 'Diastolic_pressure'}),
Error in Liste_aller_Matlabfiles (line 50)
table_subjects = cell2table(table(1:end,:),'VariableNames',{'Subject number' 'Gender' 'Age' 'Weight' 'Height' 'Systolic_pressure'
'Diastolic_pressure'})

Best Answer

The R2019b release allows spaces and other (inluuding Unicode) characters in table variable names. Upgrade to it and you will be able to do what you want.