from
f2matlab
by Ben Barrowes Converts basic fortran90 source code to MATLAB source code.
out=incomment(str,locs)
function out=incomment(str,locs)
%%%out=false(1,length(locs));
%%%temp=find(str=='%');
%%%if ~isempty(temp)
%%% temp=min(temp(~inastring_f(str,temp)));
%%% if ~isempty(temp)
%%% for ii=1:length(locs)
%%% if temp<=locs(ii)
%%% out(ii:end)=true;
%%% break
%%% end
%%% end
%%% end
%%%end
%%%
%%%
%%%
out=false(1,length(locs));
temp=find(str=='%');
for jj=1:length(temp)
if jj==1 && temp(1)==1
out(:)=true;
break
else
temp1=inastring_f(str,temp(jj)) || inaDQstring_f(str,temp(jj));
if ~temp1
out(locs>=temp(jj))=true;
break
end
end
end