ops.fda.usc {fda.usc} | R Documentation |
ops.fda.usc Options Settings
Description
Set or query graphical and prompt output parameters. Allow the user to set and examine a variety of global or local options which affect the way in which fda.usc functions computes and displays its results.
Usage
ops.fda.usc(
verbose = FALSE,
trace = FALSE,
warning = FALSE,
ncores = NULL,
int.method = "TRAPZ",
reset = FALSE,
eps = as.double(.Machine[[1]] * 10)
)
Arguments
verbose |
|
trace |
|
warning |
|
ncores |
integer. Number of CPU cores on the current host. |
int.method |
see |
reset |
|
eps |
epsilon parameter. |
Author(s)
Manuel Oviedo de la Fuente (manuel.oviedo@udc.es).
Examples
## Not run:
# If worker initialization failed, please execute this code
ncores <- max(parallel::detectCores() -1,1)
if (ncores==1) {
foreach::registerDoSEQ()
} else{
cl <- suppressWarnings(parallel::makePSOCKcluster(ncores ))
doParallel::registerDoParallel(cl)
}
ops.fda.usc()
## End(Not run)
[Package fda.usc version 2.1.0 Index]