ILNumerics - Technical Application Development
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
solve system of linear equations by triangular matrices
[ILNumerics Core Module]
Namespace: ILNumerics.Core.Native
Assembly: ILNumerics.Core (in ILNumerics.Core.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
void zgetrs( char trans, int N, int NRHS, complex* A, int LDA, int* IPIV, complex* B, int LDB, ref int info )
Parameters
- trans
- Type: SystemChar
transpose before work? - N
- Type: SystemInt32
number rows - NRHS
- Type: SystemInt32
number right hand sides - A
- Type: ILNumericscomplex*
matrix A - LDA
- Type: SystemInt32
spacing between columns: A - IPIV
- Type: SystemInt32*
pivoting indices - B
- Type: ILNumericscomplex*
matrix B - LDB
- Type: SystemInt32
spacing between columns: B - info
- Type: SystemInt32
success info
Remarks
[ILNumerics Core Module]
See Also