summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--R-sysid.Rproj17
-rw-r--r--data/frfdata.m11
2 files changed, 0 insertions, 28 deletions
diff --git a/R-sysid.Rproj b/R-sysid.Rproj
deleted file mode 100644
index 21a4da0..0000000
--- a/R-sysid.Rproj
+++ /dev/null
@@ -1,17 +0,0 @@
-Version: 1.0
-
-RestoreWorkspace: Default
-SaveWorkspace: Default
-AlwaysSaveHistory: Default
-
-EnableCodeIndexing: Yes
-UseSpacesForTab: Yes
-NumSpacesForTab: 2
-Encoding: UTF-8
-
-RnwWeave: Sweave
-LaTeX: pdfLaTeX
-
-BuildType: Package
-PackageUseDevtools: Yes
-PackageInstallArgs: --no-multiarch --with-keep.source
diff --git a/data/frfdata.m b/data/frfdata.m
deleted file mode 100644
index 176edd6..0000000
--- a/data/frfdata.m
+++ /dev/null
@@ -1,11 +0,0 @@
-% Generating an IDPOLY object of type ARMAX
-proc_armax = idpoly([1 -1.2 0.35],[0 0 2],[1 0.3],'Noisevariance',1);
-% Simulate the process with a PRBS input
-uk = idinput(2046,'prbs',[0 0.4],[-1 1]); % Full -length PRBS
-yktrue = sim(proc_armax ,uk); % Noise -free simulation
-% Adjusting the noise variance s.t. SNR = 10
-mult_fact = (1 + 0.3^2)*(1 + 0.35)/((1 + 0.35)*(1 - 0.35^2) - 1.2^2 + ...
-0.35*1.2^2);
-proc_armax.Noisevar = 0.1*var(yktrue)/mult_fact;
-% Simulate with noise
-yk = sim(proc_armax ,uk,simOptions('Addnoise',true)); \ No newline at end of file