From d411efe5e1caafd954749da7299cc53cff8de926 Mon Sep 17 00:00:00 2001 From: Fredrik Bagge Carlson <cont-frb@ulund.org> Date: Tue, 13 Sep 2016 16:07:30 +0200 Subject: [PATCH] cleanup --- src/SystemIdentification.jl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/SystemIdentification.jl b/src/SystemIdentification.jl index 053144e..0fb42e3 100644 --- a/src/SystemIdentification.jl +++ b/src/SystemIdentification.jl @@ -1,5 +1,5 @@ module SystemIdentification -if !isdefined(:DEBUG); DEBUG = false; end + export Model,LinearModel,NonLinearModel, Network, @@ -110,10 +110,12 @@ aic(x,d) = log(sse(x)) + 2d/length(x) Base.show(fit::FitStatistics) = println("Fit RMS:$(fit.RMS), FIT:$(fit.FIT), AIC:$(fit.AIC)") +include("utilities") +include("transfer_functions") +include("idinput") include("armax.jl") include("kalman.jl") include("PCA.jl") -# include("kernelPCA.jl") -include("toeplitz.jl") +include("cuckooSearch.jl") end -- GitLab