diff options
author | priyakedia | 2018-07-31 16:26:53 +0530 |
---|---|---|
committer | priyakedia | 2018-07-31 16:26:53 +0530 |
commit | 11ee9c829fe88301c69b731cdf9fe7957d0fa68c (patch) | |
tree | dd62f0e176af8b35f4de2d6b64692105fd90afd6 | |
parent | db25cb043776c50d0f0ee98636301906b065d8f0 (diff) | |
download | FOSSEE-System-Identification-Toolbox-11ee9c829fe88301c69b731cdf9fe7957d0fa68c.tar.gz FOSSEE-System-Identification-Toolbox-11ee9c829fe88301c69b731cdf9fe7957d0fa68c.tar.bz2 FOSSEE-System-Identification-Toolbox-11ee9c829fe88301c69b731cdf9fe7957d0fa68c.zip |
-rw-r--r-- | armaX.sci | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ function sys = armaX(varargin) // Examples // u = idinput(1024,'PRBS',[0 1/20],[-1 1]) // a = [1 0.5];b = [0 2 3]; -// model = iddata(a,b,'Ts',0.1) +// model = idpoly(a,b,'Ts',0.1) // y = sim(u,model) + rand(length(u),1) // plantData = iddata(y,u,0.1) // sys = armaX(plantData,[2,2,1]) @@ -36,7 +36,7 @@ function sys = armaX(varargin) // Examples // u = idinput(1024,'PRBS',[0 1/20],[-1 1]) // a = [1 0.5];b = [0 2 3]; -// model = iddata(a,b,'Ts',0.1) +// model = idpoly(a,b,'Ts',0.1) // y = sim(u,model) + rand(length(u),1) // plantData = [y,u] // sys = armaX(plantData,[2,2,1]) |