forked from RcppCore/RcppEigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNAMESPACE
More file actions
20 lines (18 loc) · 662 Bytes
/
Copy pathNAMESPACE
File metadata and controls
20 lines (18 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
useDynLib("RcppEigen", .registration=TRUE)
importFrom("Rcpp", "evalCpp")
importFrom("utils", "packageDescription", "package.skeleton", "packageVersion")
importFrom("stats", "model.frame", "model.matrix", "model.response", "fitted", "coef", "printCoefmat", "pt", "na.omit")
export("fastLm",
"fastLmPure",
"RcppEigen.package.skeleton",
"EigenNbThreads",
"EigenSetNbThreads",
"RcppEigen_throttle_cores",
"RcppEigen_reset_cores"
)
S3method("fastLm", "default")
S3method("fastLm", "formula")
S3method("predict", "fastLm")
S3method("print", "fastLm")
S3method("summary", "fastLm")
S3method("print", "summary.fastLm")