⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 perform_local_pca.m

📁 toolbox_dimreduc - a toolbox for dimension reduction methods This toolbox is an educational and rec
💻 M
字号:
function [LocP,LocPsi,Segm] = perform_local_pca(X, options)

% perform_local_pca - perform local principal component
%
% [LocP,LocPsi,Segm] = perform_local_pca(X, options);
%
%   X is the data set of size (m,p), X(:,i) is the ith point 
%       leaving in dimension p.
%
%   LocP(:,:,i) is the matrix whose d columns are the basis
%       of the tangent plane in the ith cluster.
%   LocPsi(:,i) is m dimensional vector which is the center 
%       of the ith cluster.
%   Segm(i) tels to which cluster belongs the ith point of X. 
%
%   You can define
%       options.nbr_clusters : number of center points
%       options.nb_iter : number of iteration for the clustering.
%       options.nbr_neighbors : number of NN for tangent planes estimation
%       options.dim=d : dimensionality of tangent planes
%
%   Only a k-means clustering is used to perform segmentation.
%   
%   Copyright (c) 2006 Gabriel Peyr

⌨️ 快捷键说明

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