Member of the matrix class.
c = wilkinson(a)
Generates the Wilkinson test matrix for eigenvalue solvers.
| Name | Description |
| a | Specifies the size of the test matrix. a is a positive scalar. |
| Name | Description |
| c | Returns an a-by-a square Wilkinson matrix. c is symmetric and tridiagonal. The eigenvalues of c are ill-conditioned because you cannot separate them easily. |
A = wilkinson(9)
C = eig(A)