nickgillian / grt

gesture recognition toolkit
861 stars 284 forks source link

Tiny issue in TimeSeriesClassificationData.cpp #69

Closed BoYaoEssex closed 8 years ago

BoYaoEssex commented 8 years ago

In Line 821: if( K > totalNumSamples ){

should be: if( K == 0 ){

Because line 821 is the same as line 827, and I can see it in the comment in line 820 //K can not be zero

nickgillian commented 8 years ago

Thanks for catching this, I just pushed a fix to the master branch to resolve this.