MATLAB Function Reference
  Go to function:
    Search    Help Desk 
triu    Examples   See Also

Upper triangular part of a matrix

Syntax

Description

U = triu(X) returns the upper triangular part of X.

U = triu(X,k) returns the element on and above the kth diagonal of X. k = 0 is the main diagonal, k > 0 is above the main diagonal, and k < 0 is below the main diagonal.


Examples

triu(ones(4,4),-1) is

See Also

diag        Diagonal matrices and diagonals of a matrix

tril        Lower triangular part of a matrix



[ Previous | Help Desk | Next ]