diff options
author | Suraj Yerramilli | 2015-09-06 21:46:28 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-09-06 21:46:28 +0530 |
commit | d07ecdecfa600635d469235f6860bf2d886f9fef (patch) | |
tree | 4e1ba5f2baaa3c0a94650a44460c85f3cad709f7 /R | |
parent | 0315a4a9a15030dccaec66f364196dd3a6faafd9 (diff) | |
download | SysID-R-code-d07ecdecfa600635d469235f6860bf2d886f9fef.tar.gz SysID-R-code-d07ecdecfa600635d469235f6860bf2d886f9fef.tar.bz2 SysID-R-code-d07ecdecfa600635d469235f6860bf2d886f9fef.zip |
Typo correction in idpoly
Diffstat (limited to 'R')
-rw-r--r-- | R/poly.R | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #' @export idpoly <- function(A=1,B=1,C=1,D=1,F1=1,ioDelay=0,Ts=1){ out <- list(A= A,B=B,C=C,D=D,F1=F1,ioDelay = ioDelay,Ts=Ts) - out$type <- typecheck(x) + out$type <- typecheck(out) class(out) <- "idpoly" return(out) } |