Datahat

From Eigenvector Research Documentation Wiki
Revision as of 13:05, 22 February 2013 by imported>Jeremy
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Purpose

Calculates the model estimate and residuals of the data.

Synopsis

xhat = datahat(model);
[xhat,resids] = datahat(model,data);
[xhat,resids] = datahat(loadings,data);

Description

Given a standard model structure (model), DATAHAT computes the model estimate of the data (xhat). For example, if (model) is a PCA model of a matrix:

Xcal such that Xcal = TPT + E, then Xhat = TPT

that is:

Xcal = TPT + E = Xhat + E.


If optional input (data) is supplied then DATAHAT computes the model estimate of (data) which will be output in (xhat). For the PCA model of matrix Xcal, and (data) is a data matrix Xnew then:

Xhat = XnewPPT = TnewPT

and the output (resids) is a matrix with the corresponding residuals:

E = Xnew-XnewPPT = Xnew(I-PPT)

If (data) is Xcal then:

Xhat = TPT

and resids is:

E = Xcal(I-PPT).


Note that preprocessing in (model) will be performed before the residuals are calculated. If data is not provided, only (xhat) of the calibration data is available.

Note that DATAHAT works with almost all standard model structures or a cell-array of loadings can be supplied in place of model (for use with multiway models only).

See Also

analysis, npls, parafac, parafac2, qconcalc, residuallimit, tconcalc, tsqmtx, tsqqmtx, tucker, varcap, varcapy