30 lines
No EOL
422 B
Julia
30 lines
No EOL
422 B
Julia
module MinPakke
|
|
|
|
using LinearAlgebra
|
|
using Statistics
|
|
using Plots
|
|
using MAT
|
|
using Optimization
|
|
using OptimizationOptimJL
|
|
using OptimizationBBO
|
|
using LaTeXStrings
|
|
|
|
export plegendre
|
|
export SNV
|
|
export MSC
|
|
export EMSCTraditional
|
|
export savitzkyGolay
|
|
export findBaseline
|
|
export EMSC
|
|
export EMSCCorrection
|
|
|
|
export plotr
|
|
export compPlot
|
|
|
|
|
|
|
|
include("preprocessing.jl")
|
|
include("convenience.jl")
|
|
include("conveniencePlots.jl")
|
|
|
|
end |