Numpy 的 tri(~)
方法创建一个表示下三角矩阵的 2D Numpy 数组。主对角线及其下方的值用 1 填充,而其他地方用 0 填充。
参数
1. N
| int
结果数组的行数。
2. M
| int
| optional
结果数组的列数。默认情况下,M=N
。
3. k
| int
| optional
要排除或包含的对角线的数量。
k
的正值表示包含。 k=1
意味着我们在主对角线之上添加了一条附加对角线。
k
的负值表示排除。 k=-1
表示排除主对角线。 k=-2
表示排除主对角线和下面的对角线。
默认情况下, k=0
,这意味着返回一个完美的下三角形。
4. dtype
| string
或 type
| optional
结果数组的数据类型。默认情况下,dtype=float
。
返回值
表示下三角矩阵的 Numpy 数组。
例子
基本用法
创建 3 x 3 下三角矩阵:
np.tri(3)
array([[ 1., 0., 0.],
[ 1., 1., 0.],
[ 1., 1., 1.]])
要创建 int
类型的 3 x 4 下三角矩阵:
np.tri(3, 4, dtype=int)
array([[1, 0, 0, 0],
[1, 1, 0, 0],
[1, 1, 1, 0]])
指定正 k
要包含附加对角线,请设置 k=1
:
np.tri(3, k=1, dtype=int)
array([[1, 1, 0],
[1, 1, 1],
[1, 1, 1]])
指定负 k
要排除主对角线,请设置 k=-1
:
np.tri(3, k=-1)
array([[ 0., 0., 0.],
[ 1., 0., 0.],
[ 1., 1., 0.]])
相关用法
- Python NumPy trim_zeros方法用法及代码示例
- 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 | tri method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。