Package edu.cmu.tetrad.search
Record Class FastIca.IcaResult
java.lang.Object
java.lang.Record
edu.cmu.tetrad.search.FastIca.IcaResult
- Record Components:
X- The preprocessed input data matrix. Each row represents a signal, and each column is a feature.K- The whitening matrix used to decorrelate and normalize the input data.W- The unmixing matrix used to extract independent components from the preprocessed data.S- The matrix of independent components computed by the ICA algorithm.
- Enclosing class:
FastIca
A record that represents the result of the Independent Component Analysis (ICA) process.
This object encapsulates the key matrices obtained during the computation of ICA.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.K()Returns the value of theKrecord component.S()Returns the value of theSrecord component.final StringtoString()Returns a string representation of this record class.W()Returns the value of theWrecord component.X()Returns the value of theXrecord component.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
X
Returns the value of theXrecord component.- Returns:
- the value of the
Xrecord component
-
K
Returns the value of theKrecord component.- Returns:
- the value of the
Krecord component
-
W
Returns the value of theWrecord component.- Returns:
- the value of the
Wrecord component
-
S
Returns the value of theSrecord component.- Returns:
- the value of the
Srecord component
-