Example usage for org.apache.commons.math3.analysis.function Sigmoid Sigmoid

List of usage examples for org.apache.commons.math3.analysis.function Sigmoid Sigmoid

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis.function Sigmoid Sigmoid.

Prototype

public Sigmoid(double lo, double hi) 

Source Link

Document

Sigmoid function.

Usage

From source file:fuzzy.mf.SigmoidalMembershipFunction.java

public SigmoidalMembershipFunction(double lowAsymptote, double highAsymptote, double a, double c) {
    sigmoid = new Sigmoid(lowAsymptote, highAsymptote);
    this.a = a;//from w ww.j a  v a 2 s . c o m
    this.c = c;
}

From source file:fuzzy.mf.ProductSigmoidalMembershipFunction.java

public ProductSigmoidalMembershipFunction(double lowAsymptote, double highAsymptote, double a1, double c1,
        double a2, double c2) {
    sigmoid = new Sigmoid(lowAsymptote, highAsymptote);
    this.a1 = a1;
    this.c1 = c1;
    this.a2 = a2;
    this.c2 = c2;
}

From source file:fuzzy.mf.DifferentialSigmoidalMembershipFunction.java

public DifferentialSigmoidalMembershipFunction(double lowAsymptote, double highAsymptote, double a1, double c1,
        double a2, double c2) {
    sigmoid = new Sigmoid(lowAsymptote, highAsymptote);
    this.a1 = a1;
    this.c1 = c1;
    this.a2 = a2;
    this.c2 = c2;
}