Managed Lapack.Encode Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Encode( | Converts a MatrixDiagonal value to the BLAS/LAPACK equivalent. |
Encode( | Converts a MatrixNorm value to the BLAS/LAPACK equivalent. |
Encode( | Converts a MatrixOperationSide value to the BLAS/LAPACK equivalent. |
Encode( | Converts a MatrixTriangle value to the BLAS/LAPACK equivalent. |
Encode( | Converts a TransposeOperation value to the BLAS/LAPACK equivalent. |
Encode(MatrixDiagonal)
Converts a MatrixDiagonal
value to the BLAS/LAPACK equivalent.
public static char Encode(
MatrixDiagonal diag
)
Parameters
- diag MatrixDiagonal
- The value to encode.
Return Value
CharThe value used by BLAS/LAPACK to represent diag.
Encode(MatrixNorm)
Converts a MatrixNorm
value to the BLAS/LAPACK equivalent.
public static char Encode(
MatrixNorm norm
)
Parameters
- norm MatrixNorm
- The value to encode.
Return Value
CharThe value used by BLAS/LAPACK to represent norm.
Encode(MatrixOperationSide)
Converts a MatrixOperationSide
value to the BLAS/LAPACK equivalent.
public static char Encode(
MatrixOperationSide side
)
Parameters
- side MatrixOperationSide
- The value to encode.
Return Value
CharThe value used by BLAS/LAPACK to represent side.
Encode(MatrixTriangle)
Converts a MatrixTriangle
value to the BLAS/LAPACK equivalent.
public static char Encode(
MatrixTriangle storedTriangle
)
Parameters
- storedTriangle MatrixTriangle
- The value to encode.
Return Value
CharThe value used by BLAS/LAPACK to represent storedTriangle.
Encode(TransposeOperation)
Converts a TransposeOperation
value to the BLAS/LAPACK equivalent.
public static char Encode(
TransposeOperation trans
)
Parameters
- trans TransposeOperation
- The value to encode.
Return Value
CharThe value used by BLAS/LAPACK to represent trans.