Learn R Programming

pomp (version 1.4.1.1)

pomp-fun: Definition and methods of the "pomp.fun" class

Description

Definition and methods of the pomp.fun class

Usage

## S3 method for class 'function':
pomp.fun(f, proto = NULL, \dots)
## S3 method for class 'character':
pomp.fun(f, PACKAGE = NULL, 
      obsnames = character(0), statenames = character(0),
      paramnames = character(0), covarnames = character(0), ...)
## S3 method for class 'Csnippet':
pomp.fun(f, slotname = NULL, libname = NULL,
      obsnames = character(0), statenames = character(0),
      paramnames = character(0), covarnames = character(0), ...)
## S3 method for class 'pomp.fun':
pomp.fun(f, \dots)
## S3 method for class 'missing':
pomp.fun(f, \dots)
## S3 method for class 'NULL':
pomp.fun(f, \dots)
## S3 method for class 'pomp.fun':
show(object)
## S3 method for class 'pomp.fun':
print(x, \dots)

Arguments

f
A function or the name of a native routine.
PACKAGE
optional; the name of the dynamically-loadable library in which the native function f can be found.
proto
optional string; a prototype against which f will be checked.
object, x
The pomp.fun object.

Details

The pomp.fun class helps to settle common issues associated with user-defined functions which can be defined either via R code or by a native, compiled routine. It is not exported to userland.

See Also

pomp