sf.math.cast¶
- math.cast(dtype=None)¶
Casts
array
todtype
.- 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 cast.dtype – The data type to cast to. If
None
, the returned array is the same 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 cast to dtype.
code/api/mrmustard.math.cast
Download Python script
Download Notebook
View on GitHub