diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/puredata/xtract~.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/puredata/xtract~.c b/examples/puredata/xtract~.c index 035a43d..7866ff3 100644 --- a/examples/puredata/xtract~.c +++ b/examples/puredata/xtract~.c @@ -101,6 +101,7 @@ static void *xtract_new(t_symbol *me, t_int argc, t_atom *argv) { else if(tmp == gensym("average_deviation")) x->feature = AVERAGE_DEVIATION; else if(tmp == gensym("skewness")) x->feature = SKEWNESS; else if(tmp == gensym("kurtosis")) x->feature = KURTOSIS; + else if(tmp == gensym("centroid")) x->feature = CENTROID; else if(tmp == gensym("irregularity_k")) x->feature = IRREGULARITY_K; else if(tmp == gensym("irregularity_j")) x->feature = IRREGULARITY_J; else if(tmp == gensym("tristimulus_1")) x->feature = TRISTIMULUS_1; |