📄 mexall.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -