Eigen

ai.dragonfly.math.matrix.decomposition.Eigen
See theEigen companion object
class Eigen[N <: Int]

Check for symmetry, then construct the eigenvalue decomposition Structure to access D and V.

Value parameters

Arg

Square matrix

Attributes

Companion
object
Source
Eigen.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

inline def D: Matrix[N, N]

Attributes

Source
Eigen.scala

Return the imaginary parts of the eigenvalues

Return the imaginary parts of the eigenvalues

Attributes

Returns

imag(diag(D))

Source
Eigen.scala

Return the real parts of the eigenvalues

Return the real parts of the eigenvalues

Attributes

Returns

real(diag(D))

Source
Eigen.scala
def Λ: Matrix[N, N]

Return the block diagonal eigenvalue matrix

Return the block diagonal eigenvalue matrix

Attributes

Returns

Λ

Source
Eigen.scala

Concrete fields

val Q: Matrix[N, N]

Attributes

Source
Eigen.scala
val n: Int

Attributes

Source
Eigen.scala
val λ: Vec[N]

Attributes

Source
Eigen.scala
val λi: Vec[N]

Attributes

Source
Eigen.scala