blob: 1cadbfccf7f0308bf2322fa94c56217c97a73b9d (
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
39
40
41
42
43
44
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/status.R
\name{status}
\alias{status}
\alias{status.mmkin}
\alias{print.status.mmkin}
\alias{status.mhmkin}
\alias{print.status.mhmkin}
\title{Method to get status information for fit array objects}
\usage{
status(object, ...)
\method{status}{mmkin}(object, ...)
\method{print}{status.mmkin}(x, ...)
\method{status}{mhmkin}(object, ...)
\method{print}{status.mhmkin}(x, ...)
}
\arguments{
\item{object}{The object to investigate}
\item{\dots}{For potential future extensions}
\item{x}{The object to be printed}
}
\value{
An object with the same dimensions as the fit array
suitable printing method.
}
\description{
Method to get status information for fit array objects
}
\examples{
\dontrun{
fits <- mmkin(
c("SFO", "FOMC"),
list("FOCUS A" = FOCUS_2006_A,
"FOCUS B" = FOCUS_2006_C),
quiet = TRUE)
status(fits)
}
}
|