numpy.tril_indices_from

numpy.tril_indices_from(arr, k=0)

Return the indices for the lower-triangle of an (n, n) array.

See tril_indices for full details.

Parameters:

n : int

Sets the size of the arrays for which the returned indices will be valid.

k : int, optional

Diagonal offset (see tril for details).

See also

tril_indices, tril

Notes

New in version 1.4.0.

Previous topic

numpy.tril_indices

Next topic

numpy.triu_indices

This Page