Data Dimension Reduction

버전 1.0.0.0 (1.25 KB) 작성자: Michael Kleder
Transforms vector data into a subspace of one less dimension, along direction of smallest extent.
다운로드 수: 3.6K
업데이트 날짜: 2005/7/14

라이선스 없음

DIMRED - Data Dimension Reduction. Linearly transforms vector data into a subspace of one less dimension. Compresses data along the (arbitrary) direction of smallest spatial extent.

[D,R,T] = dimred(X)

X = Original vector data. Each row is a data point. Each column is a dimension in the original space.
D = Reduced vector data. Each row is a data point. Each column is a dimension in the lower-dimensional space.
R = "rotation" matrix to convert data from the the reduced space back into the original data space (for example, after performing operations on the data in the lower-dimensional space). Convert D back to X by using X = D*R+T;
T = "translation" matrix to convert data from the the reduced space back into the original data space (for example, after performing operations on the data in the lower-dimensional space). Convert D back to X by using X = D*R+T;

NOTES:
(1) The narrowest dimension of the data is compressed to zero. No attempt is made to verify that this is prudent. The user may wish to compute a dimensionality ratio r such as
g = svd(X); r = min(g) / max(g);
or,
g = abs(eig(cov(X))); r = min(g)/max(g);
and then proceed if r < 1e-6, for example.
(2) To convert some function F of D back to a function G of X
in the higher dimnensional space as follows:
X = (original data)
[D,R,T] = dimred(X);
F = (result of some presumably linear operation perfomed on D)
G = F*R+T;
(3) ver 1.0, Michael Kleder, July 2005

인용 양식

Michael Kleder (2024). Data Dimension Reduction (https://www.mathworks.com/matlabcentral/fileexchange/7993-data-dimension-reduction), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14SP1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

The function declaration line was accidentally commented out in the original submission.