Uses of Class
org.hackystat.projectbrowser.page.trajectory.dtw.constraint.AbstractConstraintFunction

Packages that use AbstractConstraintFunction
org.hackystat.projectbrowser.page.trajectory.dtw.constraint Provides DTW constraints functions implementations. 
org.hackystat.projectbrowser.page.trajectory.dtw.step Provides the DTW step functions implementations. 
 

Uses of AbstractConstraintFunction in org.hackystat.projectbrowser.page.trajectory.dtw.constraint
 

Methods in org.hackystat.projectbrowser.page.trajectory.dtw.constraint with parameters of type AbstractConstraintFunction
abstract  java.awt.geom.Point2D AbstractConstraintFunction.doStep(java.awt.geom.Point2D position, double[][] costMatrix, AbstractConstraintFunction constraints)
          Performs the next step given the cost matrix, current position and step function.
 

Uses of AbstractConstraintFunction in org.hackystat.projectbrowser.page.trajectory.dtw.step
 

Methods in org.hackystat.projectbrowser.page.trajectory.dtw.step with parameters of type AbstractConstraintFunction
 java.awt.Point SymmetricStepFunction.doStep(java.awt.Point position, double[][] distanceMatrix, AbstractConstraintFunction constraints)
          Calculates the next step given the cost matrix and constraints.
 java.awt.Point AsymmetricStepFunction.doStep(java.awt.Point position, double[][] distanceMatrix, AbstractConstraintFunction constraints)
          Calculates the next step given the cost matrix and constraints.
abstract  java.awt.Point AbstractStepFunction.doStep(java.awt.Point position, double[][] costMatrix, AbstractConstraintFunction constraints)
          Calculates the next step given the cost matrix and constraints.