System identification toolbox for Julia.
This package is meant to provided methods for constructing mathematical models of dynamic systems based on input-output data.
# Use `Pkg.clone` until the package is registered in `METADATA.jl`
Pkg.clone("https://github.com/JuliaSystems/IdentificationToolbox.jl")
using IdentificationToolbox
u = randn(1000)
y = filt([0,1],[1,0.7],u) + randn(1000)
data = iddata(y,u,1)
model = pem(data, [2,2,1], ARX())