?? isomap.m
字號:
function xy = Isomap(D,ndims,options);
% isomap - computes Isomap embedding using the algorithm of
% Tenenbaum, de Silva, and Langford (2000).
%
% xy = Isomap(X,ndims,options);
% or
% xy = Isomap(D,ndims,options);
%
% 'X' is a D x N matrix (D = dimensionality, N = #points)
% 'D' is either a local distance matrix (with Inf when no connection),
% or a global one (i.e. it contains already computed geodesic
% distances between pair of points).
% OPTIONAL:
% 'ndims' is the number of output dimensions (default =2).
% 'options.distance_mode' is either 'local' (set if D is a local distance matrix)
% or 'global' (set if D is a geodesic distance).
% 'options.nn_epsilon' : set it if you want to compute the nearest
% neighbor by thresholding.
% 'options.nn_nbr' : set it if you want to compute the nearest
% neighbor by using a fixed number of neighbors.
%
% Modified by Gabriel Peyr
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -