Package net.sf.tweety.math.norm
Interface RealVectorNorm
- 
- All Superinterfaces:
 Norm<java.util.Vector<java.lang.Double>>
- All Known Implementing Classes:
 AbstractRealVectorNorm,AggregatingNorm,EntropyNorm,ManhattanNorm,MaximumNorm,PNorm,ProbabilisticAggregatingNorm,ProbabilisticPNorm
public interface RealVectorNorm extends Norm<java.util.Vector<java.lang.Double>>
A norm for real vector spaces.- Author:
 - Matthias Thimm
 
 
- 
- 
Method Summary
Modifier and Type Method Description TermdistanceTerm(java.util.Vector<Term> obj1, java.util.Vector<Term> obj2)The distance between the two objects as a term.TermdistanceTerm(Term[] obj1, Term[] obj2)The distance between the two objects as a term.TermnormTerm(java.util.Vector<Term> obj)Returns the norm as a term of the given termsTermnormTerm(Term[] obj)Returns the norm as a term of the given terms 
 - 
 
- 
- 
Method Detail
- 
normTerm
Term normTerm(java.util.Vector<Term> obj)
Returns the norm as a term of the given terms- Parameters:
 obj- some term vector- Returns:
 - the term of the norm
 
 
- 
normTerm
Term normTerm(Term[] obj)
Returns the norm as a term of the given terms- Parameters:
 obj- some term array- Returns:
 - the term of the norm
 
 
- 
distanceTerm
Term distanceTerm(java.util.Vector<Term> obj1, java.util.Vector<Term> obj2)
The distance between the two objects as a term.- Parameters:
 obj1- some termsobj2- some terms- Returns:
 - the distance between the two objects as a term
 
 
 - 
 
 -