Example usage for org.apache.commons.math3.analysis.differentiation DerivativeStructure exp

List of usage examples for org.apache.commons.math3.analysis.differentiation DerivativeStructure exp

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis.differentiation DerivativeStructure exp.

Prototype

public DerivativeStructure exp() 

Source Link

Document

Exponential.

Usage

From source file:com.gedaeusp.domain.Biexponential.java

@Override
public DerivativeStructure value(DerivativeStructure t) throws MathIllegalArgumentException {
    return t.exp();
}