List of Mex files extensions MEXEXTS returns a cell array containing the Mex files platform dependent extensions and another cell array containing the full names of the corresponding platforms. See also MEX, MEXEXT
0001 function [ext, platform] = mexexts 0002 %List of Mex files extensions 0003 % MEXEXTS returns a cell array containing the Mex files platform 0004 % dependent extensions and another cell array containing the full names 0005 % of the corresponding platforms. 0006 % 0007 % See also MEX, MEXEXT 0008 0009 % Copyright (C) 2003 Guillaume Flandin <Guillaume@artefact.tk> 0010 % $Revision: 1.1 $Date: 2008-09-03 08:36:22 $ 0011 0012 ext = {'.mexsol' '.mexhpux' '.mexhp7' '.mexrs6' '.mexsg' '.mexaxp' '.mexglx' ... 0013 '.mexlx' '.dll'}; 0014 0015 platform = {'SunOS' 'HP' 'HP700' 'IBM' 'SGI' 'Alpha' 'Linux x86' 'Linux' 'Windows'};