Update src/mlpack/methods/ann/activation_functions/gaussian_function.hpp

Co-authored-by: saksham189 <7020962+saksham189@users.noreply.github.com>
This commit is contained in:
Himanshu Pathak
2020-06-15 18:08:00 +05:30
committed by GitHub
co-authored by saksham189
parent 462adbf9e0
commit c93c0aa8f3
@@ -21,8 +21,8 @@ namespace ann /** Artificial Neural Network. */ {
* The gaussian function, defined by
*
* @f{eqnarray*}{
* f(x) = e^{-1 * x^2}
* f'(x) = 2 * -x * f(x)
* f(x) &=& e^{-1 * x^2} \\
* f'(x) &=& 2 * -x * f(x)
* @f}
*/
class GaussianFunction