Given a vector x
, a value lambda
, a threshold alpha
,
and values for known prechange mean and variance, returns a list containing
the single changepoint. Algorithm is implemented in 'C++'.
cpp_detectFFFMeanSinglePrechange(
x,
lambda,
alpha,
prechangeMean,
prechangeSigma
)
A list with
tauhat
The index of the first changepoint found.
Vector of numeric values values.
Value for the fixed forgetting factor in \((0,1)\).
Value for the significance threshold in \((0,1)\).
Value of known prechange mean.
Value of known prechange standard deviation.