In MATLAB, ... is used to continue a line to the next line. But if I want to continue a long string within quotation, what can I do? ... will be tr
...
If you put the string in brackets, you can build it in several pieces:
s = ['abc' 'def' ... 'ghi'];
You can then split that statement into several lines between the strings.