diff options
author | Suraj Yerramilli | 2015-08-22 10:16:53 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-08-22 10:16:53 +0530 |
commit | a540de106bca1edcc53384f2cf40301b210dd264 (patch) | |
tree | c38d6f144a1c2493d782a0fb101cf865c525703d /R | |
parent | 43d5f981230868e6ee5e4c82dded4890fe6062c1 (diff) | |
download | SysID-R-code-a540de106bca1edcc53384f2cf40301b210dd264.tar.gz SysID-R-code-a540de106bca1edcc53384f2cf40301b210dd264.tar.bz2 SysID-R-code-a540de106bca1edcc53384f2cf40301b210dd264.zip |
Correcting typos
Diffstat (limited to 'R')
-rw-r--r-- | R/idframe.R | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/R/idframe.R b/R/idframe.R index 265bca7..d4b2359 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -82,9 +82,9 @@ summary.idframe <- function(x){ #' @export print.summary.idframe <- function(x,...){ - cat("\t\t Number of samples:");cat(object$nsample) + cat("\t\t Number of samples:");cat(x$nsample) cat("\nSampling time: ") - cat(object$Ts);cat(" ");cat(object$unit) + cat(x$Ts);cat(" ");cat(x$unit) cat("\n\n") cat("Outputs \n") |