numpy.triu()

numpy.triu(m, k=0) [source]

Upper triangle of an array.

Return a copy of a matrix with the elements below the k-th diagonal zeroed.

Please refer to the documentation for tril for further details.

See also

tril
lower triangle of an array

Examples

1
2
3
4
5
>>> np.triu([[1,2,3],[4,5,6],[7,8,9],[10,11,12]], -1)
array([[ 123],
       [ 456],
       [ 089],
       [ 00, 12]])
doc_NumPy
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.