summary.ctmedtraj: Summary Method for an Object of Class 'ctmedtraj'

View source: R/cTMed-methods-ctmedtraj.R

summary.ctmedtrajR Documentation

Summary Method for an Object of Class ctmedtraj

Description

Summary Method for an Object of Class ctmedtraj

Usage

## S3 method for class 'ctmedtraj'
summary(object, ...)

Arguments

object

an object of class ctmedtraj.

...

further arguments.

Value

Returns a data frame of simulated data.

Author(s)

Ivan Jacob Agaloos Pesigan

Examples

phi <- matrix(
  data = c(
    -0.357, 0.771, -0.450,
    0.0, -0.511, 0.729,
    0, 0, -0.693
  ),
  nrow = 3
)
colnames(phi) <- rownames(phi) <- c("x", "m", "y")

traj <- Trajectory(
  mu0 = c(3, 3, -3),
  time = 150,
  phi = phi,
  med = "m"
)

summary(traj)


cTMed documentation built on Oct. 21, 2024, 5:08 p.m.