cf.CellMeasure.expand_dims¶
-
CellMeasure.
expand_dims
(position=0, i=False)[source]¶ Insert a size 1 axis into the data array.
Parameters: - position:
int
, optional Specify the position amongst the data array axes where the new axis is to be inserted. By default the new axis is inserted at position 0, the slowest varying position.
- i:
bool
, optional If True then update the cell measure in place. By default a new cell measure is created. In either case, a cell measure is returned.
Returns: Examples: >>> v.expand_dims(2) >>> v.expand_dims(-1)
- position: