Code covered by the BSD License  

Highlights from
matlab2fmex

image thumbnail
from matlab2fmex by Ben Barrowes
matlab2fmex.m is a small translator which aims to convert numerical M-files to Fortran90 mex.

out=isalpha
function out=isalpha
out=0;
if isunix
 [a,b]=system('uname -a | grep alpha');
 if ~isempty(strfind(lower(b),'alpha')), out=1; end
end

Contact us at files@mathworks.com