Create NumPy arrays and convert the data type and in-memory ordering of existing NumPy arrays.
np_array(data, dtype = NULL, order = "C")
data | Vector or existing NumPy array providing data for the array |
---|---|
dtype | Numpy data type (e.g. "float32", "float64", etc.) |
order | Memory ordering for array. "C" means C order, "F" means Fortran order. |
A NumPy array object.