Method FillSymmetricEigenDecomposition
static member FillSymmetricEigenDecomposition: MatrixPart -> Tensor<'T> -> Tensor<'T> -> Tensor<'T> -> unit
Computes the (real) eigendecomposition of a symmetric matrix and writes it into the specified target tensors.
Declaration
static member FillSymmetricEigenDecomposition: part:MatrixPart -> trgtEigVals:Tensor<'T> -> trgtEigVecs:Tensor<'T> -> a:Tensor<'T> -> unit
Parameters
Type | Name | Description |
---|---|---|
MatrixPart | part | Specifies which part of the matrix should be used. |
Tensor<'T> | trgtEigVals | The target vector that will receive the eigenvalues. |
Tensor<'T> | trgtEigVecs | The target matrix that will receive the eigenvectors. |
Tensor<'T> | a | The input matrix to this operation. |