summaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorSuraj Yerramilli2015-06-05 12:07:00 +0530
committerSuraj Yerramilli2015-06-05 12:07:00 +0530
commit8992494aed39a15fee2ab9e6212673168169805d (patch)
tree223ea44e9c740b0fe6eb4816d8f01f5d439c1ea3 /R
parent444e91c0540e9e0745ad1aa5017fcc8381072f1e (diff)
downloadSysID-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.R7
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