tf.keras.ops.diag
Stay organized with collections
Save and categorize content based on your preferences.
Extract a diagonal or construct a diagonal array.
tf.keras.ops.diag(
x, k=0
)
Args |
x
|
Input tensor. If x is 2-D, returns the k-th diagonal of x .
If x is 1-D, return a 2-D tensor with x on the k-th diagonal.
|
k
|
The diagonal to consider. Defaults to 0 . Use k > 0 for diagonals
above the main diagonal, and k < 0 for diagonals below
the main diagonal.
|
Returns |
The extracted diagonal or constructed diagonal tensor.
|
Examples:
from keras.src import ops
x = ops.arange(9).reshape((3, 3))
x
array([[0, 1, 2],
[3, 4, 5],
[6, 7, 8]])
ops.diag(x)
array([0, 4, 8])
ops.diag(x, k=1)
array([1, 5])
ops.diag(x, k=-1)
array([3, 7])
ops.diag(ops.diag(x)))
array([[0, 0, 0],
[0, 4, 0],
[0, 0, 8]])
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-06-07 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-06-07 UTC."],[],[]]