You are viewing an older version (2.4.3). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.4.3 / numpy / tril_indices_from

_ArrayFunctionDispatcher

numpy:tril_indices_from

source: /numpy/lib/_twodim_base_impl.py :996

Signature

def   tril_indices_from ( arr k = 0 )

Summary

Return the indices for the lower-triangle of arr.

Extended Summary

See tril_indices for full details.

Parameters

arr : array_like

The indices will be valid for square arrays whose dimensions are the same as arr.

k : int, optional

Diagonal offset (see tril for details).

Examples

import numpy as np
Create a 4 by 4 array
a = np.arange(16).reshape(4, 4)
a
Pass the array to get the indices of the lower triangular elements.
trili = np.tril_indices_from(a)
trili
a[trili]
This is syntactic sugar for tril_indices().
np.tril_indices(a.shape[0])
Use the `k` parameter to return the indices for the lower triangular array up to the k-th diagonal.
trili1 = np.tril_indices_from(a, k=1)
a[trili1]

See also

tril
tril_indices
triu_indices_from

Aliases

  • numpy.tril_indices_from