Member of the matrix class.
c = invhilb(n)
Computes the inverse of a Hilbert matrix whose (i, j)-th element is equal to 1/(i+j-1), where i is the row index number and j is the column index number. The Hilbert matrix is a famous example of a poorly-conditioned matrix.
| Name | Description |
| n | Specifies the size of the Hilbert matrix. n is an integer. |
| Name | Description |
| c | Returns the inverse of the Hilbert matrix of size n. c is a real, symmetric matrix. |
C = invhilb(3)
D = invhilb(3)*hilb(3)