mldivide

Solve systems of linear equations AX = B for X. Computes minimum-norm solution to a linear least squares problem if A is not a square matrix.

  1. Slice!(RCI!T, 2) mldivide(Slice!(const(T)*, 2, kindA) a, Slice!(const(T)*, 2, kindB) b)
  2. Slice!(RCI!(Unqual!A), 2) mldivide(Slice!(RCI!A, 2, kindA) a, Slice!(RCI!B, 2, kindB) b)
    @safe pure @nogc
    Slice!(RCI!(Unqual!A), 2)
    mldivide
    (
    A
    B
    SliceKind kindA
    SliceKind kindB
    )
    (
    auto ref const Slice!(RCI!A, 2, kindA) a
    ,
    auto ref const Slice!(RCI!B, 2, kindB) b
    )
  3. Slice!(RCI!(Unqual!A), 1) mldivide(Slice!(RCI!A, 2, kindA) a, Slice!(RCI!B, 1, kindB) b)
  4. Slice!(RCI!T, 1) mldivide(Slice!(const(T)*, 2, kindA) a, Slice!(const(T)*, 1, kindB) b)

Meta