Uses of Class
org.hackystat.projectbrowser.page.trajectory.dtw.DTWException

Packages that use DTWException
org.hackystat.projectbrowser.page.trajectory.dtw Provides the simple DTW Implementation. 
 

Uses of DTWException in org.hackystat.projectbrowser.page.trajectory.dtw
 

Methods in org.hackystat.projectbrowser.page.trajectory.dtw that throw DTWException
static DTWAlignment DTWFactory.doDTW(double[][] query, double[][] template, java.lang.String stepPattern)
          Performs the alignment of two timeseries.
static double EuclideanDistance.getSeriesDistnace(double[][] query, double[][] template)
          Calculates euclidean distance between two time-series of equal length.
static double EuclideanDistance.pointDistance(double[] point1, double[] point2)
          Calculates the Euclidean distance between two points.
static double[][] DTWUtilFactory.rBind(double[] axis, double[] seriesData)
          Binds two linear arrays, producing a 2D array.
 void DTWAlignment.setDistanceMatrix(double[][] distances)
          Set the local cost matrix.
 void DTWAlignment.setQuery(double[][] query)
          Set the query time-series.
 void DTWAlignment.setStepFunction(java.lang.String stepPattern)
          Set the step function.
 void DTWAlignment.setTemplate(double[][] template)
          Set the template time-series.
 void TestDTWFactory.testBasicDTW()
          Tests euclidean distance.
 void TestDTWFactory.testEuclideanDistance()
          Tests euclidean distance.
 void TestEuclideanDistance.testPointDistance()
          Test the distance between single points.
 void TestEuclideanDistance.testSeriesDistance()
          Test the distance between two series.