RVector.array

Create a new double[] and copy the contents of the current RVector into it.

struct RVector
double[]
array
(
)

Examples

auto v = RVector([1.1, 2.2, 3.3, 4.4, 5.5]);
double[] arr = v.array;

Meta