feature extraction by using reconstruction ica -凯发k8网页登录
feature extraction by using reconstruction ica
description
returns
a reconstruction independent component analysis (rica) model object
that contains the results from applying rica to the table or matrix
of predictor data mdl
= rica(x
,q
)x
containing p variables. q
is
the number of features to extract from x
, therefore rica
learns
a p-by-q
matrix of transformation
weights. for undercomplete or overcomplete feature representations, q
can
be less than or greater than the number of predictor variables, respectively.
to access the learned transformation weights, use
mdl.transformweights
.to transform
x
to the new set of features by using the learned transformation, passmdl
andx
to .
uses
additional options specified by one or more mdl
= rica(x
,q
,name,value
)name,value
pair
arguments. for example, you can standardize the predictor data or
specify the value of the penalty coefficient in the reconstruction
term of the objective function.
examples
input arguments
output arguments
algorithms
the rica
function creates a linear transformation
of input features to output features. the transformation is based
on optimizing a nonlinear objective function that roughly balances
statistical independence of the output features versus the ability
to reconstruct the input data using the output features.
for details, see .
version history
introduced in r2017a