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")
# Specific time interval ----------------------------------------------------
IndirectCentral(
phi = phi,
delta_t = 1
)
# Range of time intervals ---------------------------------------------------
indirect_central <- IndirectCentral(
phi = phi,
delta_t = 1:30
)
plot(indirect_central)
# Methods -------------------------------------------------------------------
# IndirectCentral has a number of methods including
# print, summary, and plot
indirect_central <- IndirectCentral(
phi = phi,
delta_t = 1:5
)
print(indirect_central)
summary(indirect_central)
plot(indirect_central)
Run the code above in your browser using DataLab