/usr/lib/R/site-library/expm/NAMESPACE is in r-cran-expm 0.999-0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ### C code
useDynLib(expm, .registration = TRUE)
importFrom("methods", as, is)
importFrom("stats", rnorm)
importFrom("Matrix", Schur, norm,
solve,# <- for expm.Higham08(*, balancing=FALSE)
rowSums, colSums,# e.g. in expm.s.Pade.s
Diagonal,
Matrix)# <- only in Schur(Matrix(.))
### Exports
export(expm, expAtv)
export("%^%")
export(balance, dgebal)# dgebal() should become deprecated -- see R/dgebal.R and ./TODO
export(logm)
## From Michael Stadelmann's (ETH Zurich) Master Thesis : ------------
export(expm.Higham08)## exported, as has own help == man/expm.Higham08.Rd
## For now we want the files to be kept modularly separate from the rest of 'expm'
export(expmCond, expmFrechet)
export(sqrtm)
|