how to continue code in next line with comment between them
317 views (last 30 days)
Show older comments
i have a long line code, that i want to specify each part of code by comment in above it. i use (...) at end of each part to continue code in next line.like this:
% line 1
a=b+c+f...
% line 2
+t+h+k;
but when i write comments between lines, matlab just calculate first line. now what should i do to write comment between break lines.
0 Comments
Accepted Answer
More Answers (1)
Andrew Newell
on 30 Apr 2017
Edited: Andrew Newell
on 30 Apr 2017
You can have the comments beside each part instead:
a=b+c+f... % line 1
+t+h+k; % line 2
However, it is possible to over-comment code! Using meaningful names for variables is a way of making the code self-commenting.
0 Comments
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!