% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/simulation.R
\name{getMu_ij_matrix}
\alias{getMu_ij_matrix}
\title{getMu_ij_matrix}
\usage{
getMu_ij_matrix(dtf_coef)
}
\arguments{
\item{dtf_coef}{A dataframe containing the coefficients.}
}
\value{
A Mu_ij matrix.
}
\description{
Get the Mu_ij matrix.
}
\examples{
list_var <- init_variable()
dtf_coef <- getInput2simulation(list_var, 10)
dtf_coef <- getLog_qij(dtf_coef)
dtf_coef <- addBasalExpression(dtf_coef, 10, c(10, 20, 0))
dtf_coef<- getMu_ij(dtf_coef)
getMu_ij_matrix(dtf_coef)
}