RMatrix.this

If embedding an R interpreter inside a D program, this function makes it more convenient to pull a matrix from R into D.

  1. this(int r, int c)
  2. this(T m)
  3. this(Robj rm, bool u = false)
  4. this(string name)
    struct RMatrix
    version(standalone)
    this
    (
    string name
    )
  5. this(RVector v)

Examples

auto rm = RMatrix("m");

Meta