diff options
author | Suraj Yerramilli | 2015-06-05 12:07:00 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-06-05 12:07:00 +0530 |
commit | 8992494aed39a15fee2ab9e6212673168169805d (patch) | |
tree | 223ea44e9c740b0fe6eb4816d8f01f5d439c1ea3 /R | |
parent | 444e91c0540e9e0745ad1aa5017fcc8381072f1e (diff) | |
download | SysID-R-code-8992494aed39a15fee2ab9e6212673168169805d.tar.gz SysID-R-code-8992494aed39a15fee2ab9e6212673168169805d.tar.bz2 SysID-R-code-8992494aed39a15fee2ab9e6212673168169805d.zip |
Added file set to contain parametric estimation methods
Diffstat (limited to 'R')
-rw-r--r-- | R/estpoly.R | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/R/estpoly.R b/R/estpoly.R new file mode 100644 index 0000000..f7293e8 --- /dev/null +++ b/R/estpoly.R @@ -0,0 +1,7 @@ +estARX <- function(data,order=c(0,1,0)){ + y <- as.matrix(data$output) + u <- as.matrix(data$input) + na <- order[1];nb <- order[2]; nk <- order[3] + + +}
\ No newline at end of file |