mexall.m

来自「一个基于matlab的数据降维工具箱,包括MDS,LEE等方法」· M 代码 · 共 42 行

M
42
字号
function mexall%MEXALL Compiles all MEX-files of the Matlab Toolbox for Dimensionality Reduction%%   mexall%% Compiles all MEX-files of the Matlab Toolbox for Dimensionality Reduction.%%% This file is part of the Matlab Toolbox for Dimensionality Reduction v0.3b.% The toolbox can be obtained from http://www.cs.unimaas.nl/l.vandermaaten% You are free to use, change, or redistribute this code in any way you% want for non-commercial purposes. However, it is appreciated if you % maintain the name of the original author.%% (C) Laurens van der Maaten% Maastricht University, 2007    disp('Compiling...');    cd techniques        try         mex -O computegr.c    catch        warning('Compiling failed. FastMVU might not work properly.');    end    try         mex -O mexCCACollectData2.c    catch        warning('Compiling failed. FastMVU might not work properly.');    end    try         mex -O mexCCACollectData.c    catch        warning('Compiling failed. CCA might not work properly.');    end    try         mex -O dijkstra.cpp    catch        warning('Compiling failed. Isomap and LandmarkIsomap might not work properly.');    end    cd ..    disp('Compilation completed.');

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?