From eb36b24798ab441c17d3711d4bd5c933849811a3 Mon Sep 17 00:00:00 2001 From: Reinhold <8436725+reikoch@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:18:17 +0200 Subject: [PATCH] fix description of class markovchain --- DESCRIPTION | 2 +- R/classesAndMethods.R | 2 +- man/markovchain-class.Rd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 18668a1..d2edb63 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: markovchain Type: Package Title: Easy Handling Discrete Time Markov Chains -Version: 0.10.0 +Version: 0.10.0.9006 Authors@R: c( person("Giorgio Alfredo", "Spedicato", role = c("aut", "cre"), email = "spedicato_giorgio@yahoo.it",comment = c(ORCID = "0000-0002-0315-8888")), diff --git a/R/classesAndMethods.R b/R/classesAndMethods.R index a1067cb..3a569c7 100644 --- a/R/classesAndMethods.R +++ b/R/classesAndMethods.R @@ -35,7 +35,7 @@ #' @param states Name of the states. Must be the same of \code{colnames} and \code{rownames} of the transition matrix #' @param byrow TRUE or FALSE indicating whether the supplied matrix #' is either stochastic by rows or by columns -#' @param transitionMatrix Square transition matrix of class Matrix::Matrix +#' @param transitionMatrix Square transition matrix #' @param name Optional character name of the Markov chain #' #' @section Creation of objects: diff --git a/man/markovchain-class.Rd b/man/markovchain-class.Rd index 6c29847..112edfa 100644 --- a/man/markovchain-class.Rd +++ b/man/markovchain-class.Rd @@ -61,7 +61,7 @@ \item{byrow}{TRUE or FALSE indicating whether the supplied matrix is either stochastic by rows or by columns} -\item{transitionMatrix}{Square transition matrix of class Matrix::Matrix} +\item{transitionMatrix}{Square transition matrix} \item{name}{Optional character name of the Markov chain} }