Package rocks.palaiologos.maja.matrix
Record Class DoubleEigenvalueDecompositionResult
java.lang.Object
java.lang.Record
rocks.palaiologos.maja.matrix.DoubleEigenvalueDecompositionResult
@Desugar
public record DoubleEigenvalueDecompositionResult(DoubleMatrix V, DoubleMatrix D, Complex[] e)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aDoubleEigenvalueDecompositionResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionD()
Returns the value of theD
record component.Complex[]
e()
Returns the value of thee
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.V()
Returns the value of theV
record component.
-
Constructor Details
-
DoubleEigenvalueDecompositionResult
Creates an instance of aDoubleEigenvalueDecompositionResult
record class.- Parameters:
V
- the value for theV
record componentD
- the value for theD
record componente
- the value for thee
record component
-
-
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)
. -
V
Returns the value of theV
record component.- Returns:
- the value of the
V
record component
-
D
Returns the value of theD
record component.- Returns:
- the value of the
D
record component
-
e
Returns the value of thee
record component.- Returns:
- the value of the
e
record component
-