Namespace: Extreme.Mathematics.LinearAlgebra.Providers
Assembly: Extreme.Numerics.SinglePrecision.Net40 (in Extreme.Numerics.SinglePrecision.Net40.dll) Version: 4.0.10170.0 (4.0.11003.0)
Syntax
| C# |
public abstract void Spbtrs(
MatrixTriangle triangleMode,
int n,
int k,
int nrhs,
float[] a,
int aOffset,
int lda,
float[] b,
int bOffset,
int ldb,
out int info
)
|
| Visual Basic (Declaration) |
Public MustOverride Sub Spbtrs ( _
triangleMode As MatrixTriangle, _
n As Integer, _
k As Integer, _
nrhs As Integer, _
a As Single(), _
aOffset As Integer, _
lda As Integer, _
b As Single(), _
bOffset As Integer, _
ldb As Integer, _
<OutAttribute> ByRef info As Integer _
)
|
| Visual C++ |
public:
virtual void Spbtrs(
MatrixTriangle triangleMode,
int n,
int k,
int nrhs,
array<float>^ a,
int aOffset,
int lda,
array<float>^ b,
int bOffset,
int ldb,
[OutAttribute] int% info
) abstract
|
See Also