hilbert.matrix {matrixcalc} | R Documentation |
This function returns an n by n Hilbert matrix.
hilbert.matrix(n)
n |
Order of the Hilbert matrix |
A matrix.
If the argument is less than or equal to zero, the function displays an error message and stops. If the argument is not an integer, the function displays an error message and stops.
Frederick Novomestky fnovomes@poly.edu
Magnus, J. R. and H. Neudecker (1999) Matrix Differential Calculus with Applications in Statistics and Econometrics, Second Edition, John Wiley.
H <- hilbert.matrix( 4 )