Code covered by the BSD License  

Highlights from
f2matlab

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

out=isnumber(str)
function out=isnumber(str)
%out=(((str>47)&(str<58))|(str==46));
out=((str>47)&(str<58));

Contact us at files@mathworks.com