49 lines
429 B
Matlab
49 lines
429 B
Matlab
% All the exaples here should yeild folding
|
|
|
|
classdef
|
|
% Some code
|
|
end
|
|
|
|
for
|
|
% Some code
|
|
end
|
|
|
|
function
|
|
% Some code
|
|
end
|
|
|
|
if
|
|
% Some code
|
|
elseif
|
|
% Some code
|
|
else
|
|
% Some code
|
|
end
|
|
|
|
parfor
|
|
% Some code
|
|
end
|
|
|
|
spmd
|
|
% Some code
|
|
end
|
|
|
|
switch
|
|
case
|
|
% Some code
|
|
case
|
|
% Some code
|
|
otherwise
|
|
% Some code
|
|
end
|
|
|
|
try
|
|
% Some code
|
|
catch
|
|
% Some code
|
|
end
|
|
|
|
while
|
|
% Some code
|
|
end
|