deephaven.lang.arrays¶
Utilities for working with arrays.
The contents of this module are intended only for internal Deephaven use and may change at any time.
-
default_order= 'A'¶ Default memory representation (e.g. row-major (C-style) or column-major (Fortran-style)).
-
float32_(a, order='A')¶ Converts the input to a numpy float32 array.
- Parameters
a – input
- Returns
numpy array
-
float64_(a, order='A')¶ Converts the input to a numpy float64 array.
- Parameters
a – input
- Returns
numpy array
-
int32_(a, order='A')¶ Converts the input to a numpy int32 array.
- Parameters
a – input
- Returns
numpy array
-
int64_(a, order='A')¶ Converts the input to a numpy int64 array.
- Parameters
a – input
- Returns
numpy array