Numpy 的 transpose(~)
方法翻转行和列,就像在矩阵中一样。
参数
1. a
| array-like
输入数组。
2. axes
| int
的list
| optional
执行转置所沿的轴。默认情况下,翻转 2D 数组的列和行。
返回值
如果 a
是标量,则返回标量。否则,返回一个 Numpy 数组。
例子
考虑以下二维数组:
a = np.array([[4,5],[6,7]])
a
array([[4, 5],
[6, 7]])
进行转置给出:
np.transpose(a)
array([[4, 6],
[5, 7]])
注意行和列是如何翻转的。
相关用法
- Python tracemalloc.Traceback.format用法及代码示例
- Python NumPy tri方法用法及代码示例
- Python trunc()用法及代码示例
- Python NumPy trim_zeros方法用法及代码示例
- Python NumPy true_divide方法用法及代码示例
- 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 | transpose method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。