VOOZH about

URL: https://www.geeksforgeeks.org/python/numpy-tril-python/

⇱ numpy.tril() in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

numpy.tril() in Python

Last Updated : 9 Mar, 2022
numpy.tril(a, k=0) : Returns copy of array with lower part of the triangle w.r.t k Parameters :
a : input array
k : [int, optional, 0 by default]
 Diagonal we require; k>0 means diagonal above main diagonal or vice versa.
Returns :
Lower triangle of a, having same shape and data-type as a.
Output :
Main Diagonal elements : 
 [[ 1 0 0]
 [ 63 434 0]
 [ 54 54 56]] 

Diagonal above main Diagonal elements : 
 [[ 1 21 0]
 [ 63 434 3]
 [ 54 54 56]] 


Main Diagonal elements : 
 [[ 0 0 0]
 [63 0 0]
 [54 54 0]]
References: https://numpy.org/doc/stable/reference/generated/numpy.tril.html#numpy.tril Note : These NumPy-Python programs won't run on online IDE's, so run them on your systems to explore them .
Comment