The OpenD Programming Language

LeastSquaresFunction

Delegates for low level D API.

import mir.optim.least_squares;
alias LeastSquaresFunction(T) = void delegate
(
Slice!(const(T)*) x
,
Slice!(T*) y
)
@safe nothrow @nogc pure

Meta