Code covered by the BSD License  

Highlights from
f2matlab

from f2matlab by Ben Barrowes
Converts basic fortran90 source code to MATLAB source code.

out=empt0(in)
function out=empt0(in)
% converts empty to 0, otherwise leaves

out=in;
if isempty(out), out=0; end

Contact us