返回具有給定對角線值的對角線張量。
用法
tf.raw_ops.Diag(
diagonal, name=None
)
參數
-
diagonal
一個Tensor
。必須是以下類型之一:bfloat16
,half
,float32
,float64
,int32
,int64
,complex64
,complex128
。秩 k 張量,其中 k 最多為 1。 -
name
操作的名稱(可選)。
返回
-
一個
Tensor
。具有與diagonal
相同的類型。
給定 diagonal
,此操作返回一個帶有 diagonal
的張量,其他所有內容都用零填充。對角線計算如下:
假設 diagonal
的維度為 [D1,..., Dk],那麽輸出是一個秩為 2k 的張量,維度為 [D1,..., Dk, D1,..., Dk],其中:
output[i1,..., ik, i1,..., ik] = diagonal[i1, ..., ik]
和 0 其他地方。
例如:
# 'diagonal' is [1, 2, 3, 4]
tf.diag(diagonal) ==> [[1, 0, 0, 0]
[0, 2, 0, 0]
[0, 0, 3, 0]
[0, 0, 0, 4]]
相關用法
- Python tf.raw_ops.DiagPart用法及代碼示例
- Python tf.raw_ops.Dilation2D用法及代碼示例
- Python tf.raw_ops.DecodeGif用法及代碼示例
- Python tf.raw_ops.DepthToSpace用法及代碼示例
- Python tf.raw_ops.DepthwiseConv2dNative用法及代碼示例
- Python tf.raw_ops.DeserializeManySparse用法及代碼示例
- Python tf.raw_ops.Dequantize用法及代碼示例
- Python tf.raw_ops.DeserializeSparse用法及代碼示例
- Python tf.raw_ops.DynamicPartition用法及代碼示例
- Python tf.raw_ops.DataFormatVecPermute用法及代碼示例
- Python tf.raw_ops.DecodeProtoV2用法及代碼示例
- Python tf.raw_ops.DynamicStitch用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.BatchMatMul用法及代碼示例
- Python tf.raw_ops.OneHot用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代碼示例
- Python tf.raw_ops.GatherV2用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.Diag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。