ProbabilisticAlgebra.java

// FILE. . . . . d:/hak/hlt/src/hlt/math/fuzzy/ProbabilisticAlgebra.java
// EDIT BY . . . Hassan Ait-Kaci
// ON MACHINE. . Hp-Zbook
// STARTED ON. . Sun May  6 08:23:47 2018


Copyright:  © by the author
Author:  Hassan Aït-Kaci
Version:  Last modified on Sun Dec 15 11:34:00 2019 by hak


package hlt.math.fuzzy;

package hlt.math.fuzzy package documentation listing



This defines the class ProbabilisticAlgebra as:
  • sum(x,y) x+y-x*y
  • product(x,y) x*y

See also:  FuzzyAlgebra, FuzzyMatrix

public class ProbabilisticAlgebra extends FuzzyAlgebra
{
  

Return a String form for this ProbabilisticAlgebra.

  public final String toString ()
  {
    return "Probabilistic Fuzzy Algebra";
  }

  

Define sum for this ProbabilisticAlgebra.

  public final double sum (double x, double y)
  {
    return x+y - x*y;
  }

  

Define product for this ProbabilisticAlgebra.

  public final double product (double x, double y)
  {
    return x*y;
  }

}


This file was generated on Wed Dec 18 03:38:08 PST 2019 from file ProbabilisticAlgebra.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci