tf = istril(M)
| Parameter | Description |
|---|---|
| M | a numeric array |
| Parameter | Description |
|---|---|
| tf | logical: result of 'istril'. |
istril returns an scalar logical if entry is lower triangular.
A = eye(3, 3);
R = istriu(A)
R = istriu(A(:,1))
| Version | Description |
|---|---|
| 1.0.0 | initial version |