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

📄 subsm.m

📁 模式识别工具包
💻 M
字号:
%SUBSM Find subspace map%%	[W,alf] = subsm(A,n)%% A n-dimensional subspace map for the dataset A is found using PCA,% such that it contains the origin. All object in A are normalized% first on unit length. The explained variance is returned in alf.%%	[W,n] = subsm(A,alf)%% In this case a subspace explaining at least a fraction alf of the % variance is determined. In n the subspace dimensionality is returned.%% Note that the resulting eigenvectors can be made explicite by a% back projection of the axes into the original space by% e = +(eye(n)*W')%% See datasets, mappings, subsc, fisherm, klm% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Physics, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlandsfunction [w,alf] = subsm(a,n);b = normm(+a,2);b = [b;-b];v = reducm(b);[e,alf] = klm(b*v,min(n,size(v,2)));w = v*e;

⌨️ 快捷键说明

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