Skip to content

Instantly share code, notes, and snippets.

View papainge's full-sized avatar
🎯
Focusing

Guillaume Pataut papainge

🎯
Focusing
View GitHub Profile
@papainge
papainge / DtwTest.java
Created March 17, 2017 17:36
Implementations and tests for DTW
import org.junit.Test;
import java.util.Arrays;
import java.util.Random;
import static org.junit.Assert.assertEquals;
public class DtwTest {
public double computeMine(double[] values1, double[] values2, double threshold) {