|
Contents | Previous | Next | Subchapters |
| Syntax |
invhilb(n) |
| See Also | hilb |
n x n double-precision matrix
containing the inverse of the
n x n Hilbert matrix
.
This is slower but more accurate than
inv(hilb(n)).
invhilb(2)
O-Matrix will reply
{
[ 4 , -6 ]
[ -6 , 12 ]
}
If you enter
invhilb(2) * hilb(2)
O-Matrix will reply
{
[ 1 , 0 ]
[ 0 , 1 ]
}