diff options
author | Suraj Yerramilli | 2015-06-04 15:07:43 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-06-04 15:07:43 +0530 |
commit | 346fc4a47592a972655fe8110ad95120663c7ba4 (patch) | |
tree | 1e3ebcefccabeb33262fa961bc7f570de9897c59 /R | |
parent | e1abda242758d862edb6385a415f88bc3e87f614 (diff) | |
download | SysID-R-code-346fc4a47592a972655fe8110ad95120663c7ba4.tar.gz SysID-R-code-346fc4a47592a972655fe8110ad95120663c7ba4.tar.bz2 SysID-R-code-346fc4a47592a972655fe8110ad95120663c7ba4.zip |
Added an idpoly object
Diffstat (limited to 'R')
-rw-r--r-- | R/poly.R | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/R/poly.R b/R/poly.R new file mode 100644 index 0000000..234ac28 --- /dev/null +++ b/R/poly.R @@ -0,0 +1,7 @@ +#' @export +idpoly <- function(A,B,C,D,E,F1,NoiseVar=0){ + + out <- list() + class(out) <- "idpoly" + return(out) +}
\ No newline at end of file |