diff options
author | Suraj Yerramilli | 2015-06-03 15:10:03 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-06-03 15:10:03 +0530 |
commit | f2d4c0a980fc30dfb9645047c14ce1eedd18ebad (patch) | |
tree | 065410e185f95b533ec28cead5279cb96cf09795 | |
parent | be3afe5d33b3e557f7a5d0c0313761fabbfd7607 (diff) | |
download | SysID-R-code-f2d4c0a980fc30dfb9645047c14ce1eedd18ebad.tar.gz SysID-R-code-f2d4c0a980fc30dfb9645047c14ce1eedd18ebad.tar.bz2 SysID-R-code-f2d4c0a980fc30dfb9645047c14ce1eedd18ebad.zip |
Minor Export changes
-rw-r--r-- | NAMESPACE | 1 | ||||
-rw-r--r-- | R/idframe.R | 2 | ||||
-rw-r--r-- | man/spa.Rd | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -3,6 +3,7 @@ S3method(plot,idframe) S3method(plot,impulseest) S3method(predict,detrend) +S3method(print,summary.idframe) S3method(print,tf) S3method(summary,idframe) export(dataSlice) diff --git a/R/idframe.R b/R/idframe.R index 04c1f4c..f8eeef4 100644 --- a/R/idframe.R +++ b/R/idframe.R @@ -140,7 +140,7 @@ summary.idframe <- function(object){ return(out) } - +#' @export print.summary.idframe <- function(object,...){ cat("Domain: ");cat(object$type) cat("\t\t Number of samples:");cat(object$no_of_samples) @@ -4,7 +4,7 @@ \alias{spa} \title{Estimate frequency response} \usage{ -spa(data, WinSize = NULL) +spa(data, npad = 255) } \description{ Estimates Frequency Response with fixed frequency resolution using |