Classes and interfaces

ExponentialDecayRegression

f( x ) = a * ( 1 - exp( b * x ) ) Regression for the decaying exponential function.

« More »

ExponentialDecayRegression2

f( x ) = a * ( 1 - exp( b * x ) ) + c Regression for the decaying exponential function with offset.

« More »

ExponentialDecayRegression3

f( x ) = a * ( 1 - exp( b * x + c ) ) + d Regression for the decaying exponential function with two offsets.

« More »

ExponentialRegression

f( x ) = a * exp( b * x ) Regression for the basic exponential function.

« More »

ExponentialRegression2

f( x ) = a * exp( b * x ) + c Regression for the exponential function with an offset.

« More »

ExponentialRegression3

f( x ) = a * exp( b * x + c ) + d Regression for the exponential function with two offsets.

« More »