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