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

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Elementary Functions > Matrix operations > tril

tril

lower triangular part of matrix

Calling Sequence

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
<< sum Matrix operations 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:
Fri Apr 11 14:06:50 CEST 2014