PLS_Toolbox Documentation: pcaengine | < pca | pcapro > |
pcaengine
Purpose
Principal components analysis computational engine.
Synopsis
[ssq,datarank,loads,scores,msg] = pcaengine(data,ncomp,options)
options = pcaengine('options')
Description
This function is intended primarily for use as the engine behind other more full featured PCA programs. The only required input is the data matrix data.
Optional inputs include the number of principal components desired in the output ncomp, and a structure containing optional inputs options. If the number of components ncomp is not specified, the routine will return components up to the rank of the data datarank.
The outputs are the variance or sum-of-squares captured table ssq, mathematical rank of the data datarank, principal component loadings loads, principal component scores scores, and a text variable containing any warning messages msg.
To enhance speed, the routine is written so that only the specified outputs are computed.
Options
The default options can be retreived using: options = pcaengine('options');.
See Also
analysis, evolvfa, ewfa, parafac, pca
< pca | pcapro > |