Classes |
struct | _VlArray |
| Numeric array. More...
|
Defines |
#define | VL_ARRAY_MAX_NUM_DIMENSIONS 16 |
| Maximum number of array dimensions.
|
Typedefs |
typedef struct _VlArray | VlArray |
| Numeric array.
|
Functions |
|
VL_INLINE vl_size | vl_array_get_num_dimensions (VlArray const *self) |
| Get number of dimensions.
|
VL_INLINE vl_size const * | vl_array_get_dimensions (VlArray const *self) |
| Get dimensions.
|
VL_INLINE void * | vl_array_get_data (VlArray const *self) |
| Get data.
|
VL_INLINE vl_type | vl_array_get_data_type (VlArray const *self) |
| Get type.
|
VL_EXPORT vl_size | vl_array_get_num_elements (VlArray const *self) |
| Get number of elements in array.
|
|
VL_EXPORT VlArray * | vl_array_init (VlArray *self, vl_type type, vl_size numDimension, vl_size const *dimensions) |
| New numeric array.
|
VL_EXPORT VlArray * | vl_array_init_envelope (VlArray *self, void *data, vl_type type, vl_size numDimension, vl_size const *dimensions) |
| New numeric array envelope.
|
VL_EXPORT VlArray * | vl_array_init_matrix (VlArray *self, vl_type type, vl_size numRows, vl_size numColumns) |
| New numeric array with matrix shape.
|
VL_EXPORT VlArray * | vl_array_init_matrix_envelope (VlArray *self, void *data, vl_type type, vl_size numRows, vl_size numColumns) |
| New numeric array envelpe with matrix shape.
|
VL_EXPORT VlArray * | vl_array_new (vl_type type, vl_size numDimension, vl_size const *dimensions) |
| New numeric array.
|
VL_EXPORT VlArray * | vl_array_new_envelope (void *data, vl_type type, vl_size numDimension, vl_size const *dimensions) |
| New numeric array envelope.
|
VL_EXPORT VlArray * | vl_array_new_matrix (vl_type type, vl_size numRows, vl_size numColumns) |
| New numeric array with matrix shape.
|
VL_EXPORT VlArray * | vl_array_new_matrix_envelope (void *data, vl_type type, vl_size numRows, vl_size numColumns) |
| New numeric array envelpe with matrix shape.
|
VL_EXPORT void | vl_array_dealloc (VlArray *self) |
| Delete array.
|
VL_EXPORT void | vl_array_delete (VlArray *self) |
| Delete array.
|
Array.
Array - Definition.
- Author:
- Andrea Vedaldi
Definition in file array.h.