Matrix CreateInvHilbertMatrix( Matrix mDim )
The return value is an mDim x mDim matrix that is the inverse of the Hilbert matrix of the same size.
Matrix mDim
The number of rows and columns in the returned matrix. The module only supports mDim ≤ 15.
The inverse of a Hilbert matrix has elements that rapidly get large as mDim increases. If mDim > 15, the computed inverse is no longer a reasonable approximation to the exact inverse.
m = CreateInvHilbertMatrix( 5 ); print m;