blob: ec1204f2f23ab022951144b81eedec4210083406 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
\name{mkinstart}
\alias{mkinstart}
\title{
Generate starting parameters for optimisations
}
\description{
This function is supposed to analyse a kinetic model and kinetic data in
order to generate suitable starting parameters for fitting the model.
It does not do anything really useful at the moment.
}
\usage{
mkinstart(model, data, mode = "auto")
}
\arguments{
\item{model}{
A kinetic model of class \code{\link{mkinmod}}.
}
\item{data}{
Kinetic data in wide format suitable for fitting with \code{\link{mkinfit}}.
}
\item{mode}{
How the starting parameters should be generated. At the moment, only
"auto" is supported, which internally uses \code{\link{kinfit}}.
}
}
\details{
%% ~~ If necessary, more details than the description above ~~
}
\value{
A named vector of starting parameters.
}
\author{
Johannes Ranke
}
\examples{
}
\keyword{ manip }
|