gistlib
You can create extra space between two lines in MATLAB by using the newline character \n. Here is an example:
\n
main.mfprintf('This is line 1.\n\n'); fprintf('This is line 3.'); 60 chars3 lines
fprintf('This is line 1.\n\n'); fprintf('This is line 3.');
This code will print two lines with an empty line between them:
main.mThis is line 1. This is line 3. 33 chars4 lines
This is line 1. This is line 3.
gistlibby LogSnag