LeastSquaresResult

Least-Squares results.

struct LeastSquaresResult (
T
) if (
is(T == double) ||
is(T == float)
) {}

Members

Variables

fCalls
uint fCalls;

Number of the function calls

gCalls
uint gCalls;

Number of the Jacobian calls

iterations
uint iterations;

Successful step count

lambda
T lambda;

LMA variable for (inverse of) initial trust region radius

residual
T residual;

Final residual

status
LeastSquaresStatus status;

Computation status

Meta