How can I comment a group of lines without commenting each line?
ie like \'c\'
/* printf(\"hello\"); printf(\"there\"); */
in Matla
Can I comment a block of lines in an MATLAB file using /* ... */ as I can in C?:
%{ ... Block of COMMENTS HERE ... ... %} %CODE GOES HERE plot(1:10)