Rev 3931 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
Hilbert <- function(n){ ## generate the Hilbert matrix of dimension nn <- as.integer(n)i <- seq_len(n)new("dpoMatrix", x = c(1/outer(i - 1L, i, "+")), Dim = c(n,n))}