diff options
author | Suraj Yerramilli | 2016-02-26 19:54:15 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2016-02-26 19:54:15 +0530 |
commit | 23d4a99c600e6083ad8564a0044c6c81d2b711f7 (patch) | |
tree | f84345721ebc32b14d57a47e51fd563e9dd374c8 /man | |
parent | f9f41b2f8b413bab042c87046c65925786bceedf (diff) | |
download | SysID-R-code-23d4a99c600e6083ad8564a0044c6c81d2b711f7.tar.gz SysID-R-code-23d4a99c600e6083ad8564a0044c6c81d2b711f7.tar.bz2 SysID-R-code-23d4a99c600e6083ad8564a0044c6c81d2b711f7.zip |
fixing the case where input is NULL
Diffstat (limited to 'man')
-rw-r--r-- | man/idframe.Rd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man/idframe.Rd b/man/idframe.Rd index 3ec50e7..0065d67 100644 --- a/man/idframe.Rd +++ b/man/idframe.Rd @@ -4,7 +4,7 @@ \alias{idframe} \title{S3 class for storing input-output data.} \usage{ -idframe(output = NULL, input = NULL, Ts = 1, start = 0, end = NULL, +idframe(output, input = NULL, Ts = 1, start = 0, end = NULL, unit = c("seconds", "minutes", "hours", "days")[1]) } \arguments{ @@ -18,7 +18,7 @@ idframe(output = NULL, input = NULL, Ts = 1, start = 0, end = NULL, \item{end}{Time of the last observation Optional Argument} -\item{unit}{Time Unit (Default: "seconds")} +\item{unit}{Time unit (Default: "seconds")} } \value{ an idframe object |