Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - English


tril

lower triangular part of matrix

Syntax

tril(x [,k])

Arguments

x

matrix (real, complex, polynomial, rational)

k

integer (default value 0)

Description

Lower triangle part of a matrix. tril(x,k) is made by entries below the kth diagonal : k>0 (upper diagonal) and k<0 (diagonals below the main diagonal).

Examples

s=poly(0,'s');
tril([s,s;s,1])
tril([1/s,1/s;1/s,1])

See also

  • triu — upper triangle
  • ones — matrix made of ones
  • eye — identity matrix
  • diag — diagonal including or extracting
Report an issue
<< squeeze Matrix - shaping triu >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:30:03 CEST 2023