mzed/ofxRapidLib

DTW array declaration

Closed this issue · 1 comments

mzed commented

Line 33 of DTW:
double costMatrix[inputSeries.size()][storedSeries.size()];

This isn't a great way to declare this, and fails on Windows. Probably best to use std::vector.

mzed commented

I think this is fixed now, but I haven't tested on Windows yet. Awaiting confirmation.