Java tanh tanhDerivative(final double thOutput)

Here you can find the source of tanhDerivative(final double thOutput)

Description

tanh Derivative

License

Open Source License

Declaration

public static double tanhDerivative(final double thOutput) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static double tanhDerivative(final double thOutput) {
        return 1 - (thOutput * thOutput);
    }/*  w w w .j  a v a2  s  .com*/
}

Related

  1. tanh(double x)
  2. tanh(double x)
  3. tanh(Double x)
  4. tanh(double z)
  5. tanh(final double x)
  6. tanhFunction(double x)
  7. tanht(double temp)