diff options
author | Suraj Yerramilli | 2015-09-06 21:25:03 +0530 |
---|---|---|
committer | Suraj Yerramilli | 2015-09-06 21:25:03 +0530 |
commit | 8f60e350cddf0e7da051b87bb701e3a5cc3a614c (patch) | |
tree | df374a42ce7401267343adabcbf4ea15644d06dd /man | |
parent | 5e2871199a017b1a9779b708b2d41fc73624bea9 (diff) | |
download | SysID-R-code-8f60e350cddf0e7da051b87bb701e3a5cc3a614c.tar.gz SysID-R-code-8f60e350cddf0e7da051b87bb701e3a5cc3a614c.tar.bz2 SysID-R-code-8f60e350cddf0e7da051b87bb701e3a5cc3a614c.zip |
Structuring estimation routines
Diffstat (limited to 'man')
-rw-r--r-- | man/arx.Rd (renamed from man/estARX.Rd) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/estARX.Rd b/man/arx.Rd index 34c0795..62b9cd1 100644 --- a/man/estARX.Rd +++ b/man/arx.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2 (4.1.1): do not edit by hand % Please edit documentation in R/estpoly.R -\name{estARX} -\alias{estARX} +\name{arx} +\alias{arx} \title{Estimate ARX Models} \usage{ -estARX(data, order = c(0, 1, 0)) +arx(data, order = c(0, 1, 0)) } \arguments{ \item{data}{an object of class \code{idframe}} @@ -48,7 +48,7 @@ using the \code{\link{detrend}} function. } \examples{ data(arxsim) -model <- estARX(data,c(2,1,1)) +model <- arx(data,c(2,1,1)) summary(model) # obtain estimates and their covariances plot(model) # plot the predicted and actual responses } |