disable NaN checks before BLAS calls deig.R (shorten matrix def)

This commit is contained in:
Andrew
2019-01-16 11:41:46 +02:00
parent 3afceb6c2a
commit 478d3c4569

View File

@@ -33,7 +33,7 @@ cat(sprintf(" SIZE Flops Time\n"))
n <- nfrom
while (n <= nto) {
A <- matrix(rnorm(n * n), ncol = n, nrow = n)
A <- matrix(rnorm(n * n), nrow = n)
ev <- 0
z <- system.time(for (l in 1:loops) {
ev <- eigen(A)