MATLAB: Split uigetdir line into two or more lines

MATLABuigetdir

Hello,
I am trying to split a uigetdir line into two lines like this:
datapath = uigetdir('C:\Users\bossman\Desktop\LaTeX\FAU\EEL_6935_FALL_2016\' ...
'Computer_Assign_1\Matlab','Select path of TRAINING IMAGES');
but I get the error:
Unexpected MATLAB expression.
Can you tell me how to split this uigetdir line?
Thanks

Best Answer

datapath = uigetdir(['C:\Users\bossman\Desktop\LaTeX\FAU\EEL_6935_FALL_2016\' ...
'Computer_Assign_1\Matlab'],'Select path of TRAINING IMAGES');