tf = istril(M)
| Paramètre | Description |
|---|---|
| M | un tableau numérique |
| Paramètre | Description |
|---|---|
| tf | booléen : résultat de 'istril'. |
istril renvoie un scalaire booléen si la matrice est triangulaire inférieure.
A = eye(3, 3);
R = istril(A)
R = istril(A(:,1))
| Version | Description |
|---|---|
| 1.0.0 | version initiale |