matlab multi line comment code example
Example 1: block of comments in matlab
%{
Commented code here.
%}
Example 2: comment multiple lines matlab
% Example
%{
sum(a)
diag(a)
sum(diag(a))
%}
%{
Commented code here.
%}
% Example
%{
sum(a)
diag(a)
sum(diag(a))
%}