mexexts

PURPOSE ^

List of Mex files extensions

SYNOPSIS ^

function [ext, platform] = mexexts

DESCRIPTION ^

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

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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'};

Generated on Fri 22-Aug-2008 15:38:13 by m2html © 2003