sf.math.atleast_1d¶
- math.atleast_1d(dtype=None)¶
Returns an array with at least one dimension.
- Parameters:
array (
ndarray[Tuple[int,...],Union[TypeVar(R,float16,float32,float64),TypeVar(C,complex64,complex128),TypeVar(Z,int16,int32,int64),TypeVar(N,uint16,uint32,uint64)]]) – The array to convert.dtype – The data type of the array. If
None, the returned array is of the same type as the given one.
- Return type:
ndarray[Tuple[int,...],Union[TypeVar(R,float16,float32,float64),TypeVar(C,complex64,complex128),TypeVar(Z,int16,int32,int64),TypeVar(N,uint16,uint32,uint64)]]- Returns:
The array with at least one dimension.
code/api/mrmustard.math.atleast_1d
Download Python script
Download Notebook
View on GitHub