用法:
astype(dtype, copy=True)
- dtype:(
numpy.dtype
or
str
) - 返回数组的类型。 - copy:(
bool
) - 默认True
.默认情况下, astype 总是在相同的上下文中返回一个新分配的 ndarray。如果设置为False
,并且请求的 dtype 与 ndarray 的 dtype 相同,则返回 ndarray 而不是副本。
- dtype:(
转换为指定类型后复制的数组,如果 copy=False 且 dtype 与输入数组相同,则为相同的数组。
参数:
返回:
返回类型:
转换为指定类型后返回数组的副本。
例子:
>>> x = mx.nd.zeros((2,3), dtype='float32') >>> y = x.astype('int32') >>> y.dtype <type 'numpy.int32'>
相关用法
- Python mxnet.ndarray.NDArray.as_in_context用法及代码示例
- Python mxnet.ndarray.NDArray.asscalar用法及代码示例
- Python mxnet.ndarray.NDArray.asnumpy用法及代码示例
- Python mxnet.ndarray.NDArray.ndim用法及代码示例
- Python mxnet.ndarray.NDArray.reshape用法及代码示例
- Python mxnet.ndarray.NDArray.ctx用法及代码示例
- Python mxnet.ndarray.NDArray.size用法及代码示例
- Python mxnet.ndarray.NDArray.copy用法及代码示例
- Python mxnet.ndarray.NDArray.to_dlpack_for_write用法及代码示例
- Python mxnet.ndarray.NDArray.shape用法及代码示例
- Python mxnet.ndarray.NDArray.flatten用法及代码示例
- Python mxnet.ndarray.NDArray.to_dlpack_for_read用法及代码示例
- Python mxnet.ndarray.NDArray.slice_assign_scalar用法及代码示例
- Python mxnet.ndarray.NDArray.slice_assign用法及代码示例
- Python mxnet.ndarray.NDArray.broadcast_to用法及代码示例
- Python mxnet.ndarray.NDArray.expand_dims用法及代码示例
- Python mxnet.ndarray.NDArray.broadcast_like用法及代码示例
- Python mxnet.ndarray.NDArray.copyto用法及代码示例
- Python mxnet.ndarray.NDArray.dtype用法及代码示例
- Python mxnet.ndarray.NDArray.T用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.ndarray.NDArray.astype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。