Skip to content
This repository was archived by the owner on Feb 18, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions VespucciLibrary/VespucciLibrary.pro
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ SOURCES +=\
src/Math/Fitting/nonlinleastsq.cpp \
src/Math/Accessory/Faddeeva.cpp \
src/Math/Baseline/rollingball.cpp \
src/Math/Baseline/goldindec.cpp \
src/Math/Smoothing/denoise.cpp \
src/Math/Clustering/kmeanswrapper.cpp \
src/vespucci.cpp
Expand Down Expand Up @@ -116,6 +117,8 @@ HEADERS += \
include/Math/Fitting/nonlinleastsq.h \
include/Math/Accessory/Faddeeva.h \
include/Math/Baseline/rollingball.h \
include/Math/Baseline/mconvert.h \
include/Math/Baseline/goldindec.h \
include/Math/Smoothing/denoise.h \
include/Math/Clustering/kmeanswrapper.h \
include/vespucci.h \
Expand Down
15 changes: 15 additions & 0 deletions VespucciLibrary/include/Math/Baseline/goldindec.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#ifndef GOLDINDEC_H
#define GOLDINDEC_H
using namespace arma ;
namespace Spec{
namespace Baseline{
vec GoldindecBaseline(vec X,
vec Y,
uword p,
double peak_ratio,
double eps);
vec LEGEND_C(vec y, vec n, uword ord, double s);
double T_rate(double x);
}
}
#endif // GOLDINDEC_H
Loading