I am new to Matlab but I thought ... is used for expressing array. Following lines of code, however, proved that I had no idea what that does. Could anybody give me a clue?
str = sprintf('%s: sometext %d of %d, sometext %d [%d-other text %d]',...
GROUP(ID).Name,...
GROUP(ID).TurnNumber+1,...
GROUP(ID).MaxTurns,...
GROUP(ID).SetNumber,...
It’s the line continuation string; basically, it means treat the end of line character you’re about to encounter as if it didn’t exist.
Invalid because of the line break:
Valid because you tell Matlab to keep reading: