Namespace: DotNumerics.Optimization.LBFGSBAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Run(
ref double[] A,
int offset_a,
int LDA,
int N,
ref int INFO
)
Public Sub Run (
ByRef A As Double(),
offset_a As Integer,
LDA As Integer,
N As Integer,
ByRef INFO As Integer
)
Request Example
View SourceParameters
- A Double
-
double precision(lda, n)
the symmetric matrix to be factored. only the
diagonal and upper triangle are used.
- offset_a Int32
-
- LDA Int32
-
integer
the leading dimension of the array a .
- N Int32
-
integer
the order of the matrix a .
- INFO Int32
-
integer
= 0 for normal return.
= k signals an error condition. the leading minor
of order k is not positive definite.
See Also