CreateInvHilbertMatrix

Prototype

Matrix CreateInvHilbertMatrix( Matrix mDim )

Return Value

The return value is an mDim x mDim matrix that is the inverse of the Hilbert matrix of the same size.

Parameters

Matrix mDim
The number of rows and columns in the returned matrix. The module only supports mDim ≤ 15.

Remarks

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.

Example
m = CreateInvHilbertMatrix( 5 );
print m;
See Also

CreateHilbertMatrix