From 0d26bb55b3e35e7f5e46563587ca944cae8830b3 Mon Sep 17 00:00:00 2001 From: Joakim Skogholt Date: Wed, 10 May 2023 10:54:10 +0200 Subject: [PATCH] Fixed EMSCModel dependency error --- src/preprocessing.jl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/preprocessing.jl b/src/preprocessing.jl index 091604d..a1a6b6a 100644 --- a/src/preprocessing.jl +++ b/src/preprocessing.jl @@ -17,6 +17,13 @@ plt = plot(plta, pltb, layout = (2,1)); display(plt); =# +struct EMSCModel + basis::Matrix{Float64} # Q' in QR-factorisation + R::Matrix{Float64} + basisExplanation::Vector{Int64} # [polDeg+1 nintF nRef]; + refPolPol::Vector{Float64} + baseline::Vector{Float64} +end """ function plegendre(d, p)