Class-JointMoTBF {MoTBFs} | R Documentation |
Class "jointmotbf"
Description
Defines an object of class "jointmotbf"
and other basic functions for
manipulating "jointmotbf"
objects.
Usage
jointmotbf(x = 0)
## S3 method for class 'jointmotbf'
print(x, ...)
## S3 method for class 'jointmotbf'
as.character(x, ...)
## S3 method for class 'jointmotbf'
as.list(x, ...)
is.jointmotbf(x, class = "jointmotbf")
Arguments
x |
Preferably, a list containing an expression
and other posibles elements like a |
... |
Additional arguments, not needed by these methods. |
class |
By default is |
See Also
Examples
## n.parameters is the product of the dimensions
dim <- c(3,3)
param <- seq(1,prod(dim), by=1)
## Joint Function
f <- list(Parameters=param, Dimensions=dim)
jointF <- jointMoTBF(f)
print(jointF) ## jointF
as.character(jointF)
as.list(jointF)
is(jointF)
is.jointmotbf(jointF)
[Package MoTBFs version 1.4.1 Index]