Class AbstractRealVectorNorm

    • Method Summary

      Modifier and Type Method Description
      abstract Term distanceTerm​(java.util.Vector<Term> obj1, java.util.Vector<Term> obj2)
      The distance between the two objects as a term.
      Term distanceTerm​(Term[] obj1, Term[] obj2)
      The distance between the two objects as a term.
      abstract Term normTerm​(java.util.Vector<Term> obj)
      Returns the norm as a term of the given terms
      Term normTerm​(Term[] obj)
      Returns the norm as a term of the given terms
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractRealVectorNorm

        public AbstractRealVectorNorm()
    • Method Detail

      • normTerm

        public abstract Term normTerm​(java.util.Vector<Term> obj)
        Description copied from interface: RealVectorNorm
        Returns the norm as a term of the given terms
        Specified by:
        normTerm in interface RealVectorNorm
        Parameters:
        obj - some term vector
        Returns:
        the term of the norm
      • normTerm

        public Term normTerm​(Term[] obj)
        Description copied from interface: RealVectorNorm
        Returns the norm as a term of the given terms
        Specified by:
        normTerm in interface RealVectorNorm
        Parameters:
        obj - some term array
        Returns:
        the term of the norm
      • distanceTerm

        public abstract Term distanceTerm​(java.util.Vector<Term> obj1,
                                          java.util.Vector<Term> obj2)
        Description copied from interface: RealVectorNorm
        The distance between the two objects as a term.
        Specified by:
        distanceTerm in interface RealVectorNorm
        Parameters:
        obj1 - some terms
        obj2 - some terms
        Returns:
        the distance between the two objects as a term
      • distanceTerm

        public Term distanceTerm​(Term[] obj1,
                                 Term[] obj2)
        Description copied from interface: RealVectorNorm
        The distance between the two objects as a term.
        Specified by:
        distanceTerm in interface RealVectorNorm
        Parameters:
        obj1 - some terms
        obj2 - some terms
        Returns:
        the distance between the two objects as a term