/usr/lib/R/site-library/expm/NAMESPACE is in r-cran-expm 0.99-1.1-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 | ### C code
useDynLib(expm, .registration = TRUE)
importFrom("Matrix", Schur, norm,
solve,# <- for expm.Higham08(*, balancing=FALSE)
rowSums, colSums,# e.g. in expm.s.Pade.s
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 for now; later -> expm(method = ".")
## For now we want the files to be kept modularly separate from the rest of 'expm'
export(expmCond, expmFrechet)
export(logm.Higham08) ## for now: merge into logm() with 'method = "."'
export(sqrtm)
|