Solves a complex triangular system of equations.
Namespace: Extreme.Mathematics.LinearAlgebra.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public abstract void TriangularSolve(
MatrixTriangle storedTriangle,
TransposeOperation trans,
MatrixDiagonal diag,
int n,
int nrhs,
Array2D<TComplex> a,
Array2D<TComplex> b,
out int info
)
Public MustOverride Sub TriangularSolve (
storedTriangle As MatrixTriangle,
trans As TransposeOperation,
diag As MatrixDiagonal,
n As Integer,
nrhs As Integer,
a As Array2D(Of TComplex),
b As Array2D(Of TComplex),
<OutAttribute> ByRef info As Integer
)
public:
virtual void TriangularSolve(
MatrixTriangle storedTriangle,
TransposeOperation trans,
MatrixDiagonal diag,
int n,
int nrhs,
Array2D<TComplex> a,
Array2D<TComplex> b,
[OutAttribute] int% info
) abstract
abstract TriangularSolve :
storedTriangle : MatrixTriangle *
trans : TransposeOperation *
diag : MatrixDiagonal *
n : int *
nrhs : int *
a : Array2D<'TComplex> *
b : Array2D<'TComplex> *
info : int byref -> unit
Parameters
- storedTriangle
- Type: Extreme.MathematicsMatrixTriangle
A MatrixTriangle value that indicates whether the matrix is upper
or lower triangular. - trans
- Type: Extreme.MathematicsTransposeOperation
A TransposeOperation value that indicates if the matrix should be transposed or not. - diag
- Type: Extreme.MathematicsMatrixDiagonal
A MatrixDiagonal value that indicates whether the matrix is unit diagonal. - n
- Type: SystemInt32
The number of rows and columns of the matrix. - nrhs
- Type: SystemInt32
The number of right hand sides. - a
- Type: Extreme.CollectionsArray2DTComplex
A complex array that contains the elements of the matrix. - b
- Type: Extreme.CollectionsArray2DTComplex
A complex array that contains the components of the right-hand side(s). - info
- Type: SystemInt32
On return, indicates error conditions.
Numerical Libraries
Supported in: 6.0
Reference