Numpy 的 trim_zeros()
方法返回一个新的 Numpy 数组,其中删除了前导(前)和尾随(后)零。
参数
1. a
| array-like
一维数组。
2. trim
| string
| optional
是否仅修剪前导零、尾随零或同时修剪前导零和尾随零:
值 |
意义 |
---|---|
"f" |
修剪前面的零。 |
"b" |
修剪后面的零。 |
"fb" |
修剪前面和后面的零。 |
默认情况下,trim="fb"
。
返回值
删除了前导零和尾随零的新 Numpy 数组。
例子
修剪前导零和尾随零
a = np.array([0,4,5,0,0])
np.trim_zeros(a)
array([4, 5])
仅修剪前导零
a = np.array([0,4,5,0,0])
np.trim_zeros(a, trim="f")
array([4, 5, 0, 0])
仅修剪尾随零
a = np.array([0,4,5,0,0])
np.trim_zeros(a, trim="b")
array([0, 4, 5])
相关用法
- Python NumPy tri方法用法及代码示例
- Python trunc()用法及代码示例
- Python tracemalloc.Traceback.format用法及代码示例
- Python NumPy true_divide方法用法及代码示例
- Python NumPy transpose方法用法及代码示例
- Python NumPy trunc方法用法及代码示例
- 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 | trim_zeros method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。