Java Double Sign Check sigmod(double x)

Here you can find the source of sigmod(double x)

Description

sigmod

License

Apache License

Declaration

public static double sigmod(double x) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static double sigmod(double x) {
        return 1.0 / (1.0 + Math.exp(-x));
    }/*  w ww. java  2s  .c om*/
}

Related

  1. difSigmod(double x)