LUDecomposition.solve

Solve equation.

  1. Vec solve(const(Vec) y, Vec x)
    struct LUDecomposition(size_t N, E)
    ref const @nogc nothrow pure scope
    solve
    ()
    (
    auto scope ref const(Vec) y
    ,
    return scope ref Vec x
    )
    if (
    isNumeric!E
    )
  2. Vec solve(const(Vec) y)

Parameters

y const(Vec)

equation Y.

x Vec

solved X.

Return Value

Type: Vec

reference to X.

Meta