Numpy 的 true_divide(~)
方法在给定两个数组的情况下执行逐元素真除法。真正的除法意味着 5/2=2.5
而不是楼层除法,即 5//2=2
。
方法true_divide(~)
和 divide(~)
是等效的。
警告
选择使用 /
运算符
如果您不需要此方法的第三个和第四个参数,只需使用 /
运算符划分两个数组 - 您将享受到性能提升。
参数
1. x1
| array_like
充当被除数的数组。
2. x2
| array_like
充当除数的数组。
3. out
| Numpy array
| optional
您可以将计算结果放入 out
指定的数组中,而不是创建新数组。
4. where
| boolean
的array
| optional
标记为 False 的值将被忽略,即它们的原始值将未被初始化。如果指定了 out 参数,行为会略有不同 - 原始值将保持不变。
返回值
如果 x1
和 x2
是标量,则返回标量,否则返回 Numpy 数组。
例子
除以公约数
x = [2,6,9]
np.true_divide(x, 2)
array([1. , 3. , 4.5])
除以多个除数
x = [2,6,9]
np.true_divide(x, [2,3,4])
array([1. , 2. , 2.25])
在这里,我们正在执行 2/2
、 6/3
和 9/4
。
相关用法
- Python trunc()用法及代码示例
- Python NumPy trunc方法用法及代码示例
- Python NumPy tri方法用法及代码示例
- Python NumPy trim_zeros方法用法及代码示例
- Python tracemalloc.Traceback.format用法及代码示例
- Python NumPy transpose方法用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python Pandas tseries.offsets.CustomBusinessHour.onOffset用法及代码示例
- Python torch.special.gammaincc用法及代码示例
- Python typing.get_type_hints用法及代码示例
- Python tensorflow.math.xlog1py()用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | true_divide method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。