MEXEXTS 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 %MEXEXTS 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.0 $Date: 2003/29/04 17:33:43 $ 0011 0012 ext = {'.mexsol' '.mexhpux' '.mexhp7' '.mexglx' '.mexa64' '.mexi64' '.mexmac' '.dll' '.mexw32' '.mexw64'}; 0013 0014 platform = {'Sun Solaris' 'HP-UX' 'HP-UX' 'Linux PC' 'Linux AMD Opteron' 'Linux Intel Itanium2' 'MacIntosh' 'Windows' 'Windows 32' 'Windows 64'};