Method | Description | |
---|---|---|
Derivative ( double x ) : double |
Calculates function derivative. The method calculates function derivative at point x. |
|
Derivative2 ( double y ) : double |
Calculates function derivative. The method calculates the same derivative value as the Derivative method, but it takes not the input x value itself, but the function value, which was calculated previously with the help of Function method. |
|
Function ( double x ) : double |
Calculates function value. The method calculates function value at point x. |
|
LinearFunction ( ) : System |
Initializes a new instance of the LinearFunction class.
|
|
LinearFunction ( |
Initializes a new instance of the LinearFunction class.
|
|
LinearFunction ( double alpha ) : System |
Initializes a new instance of the LinearFunction class.
|
|
LinearFunction ( double alpha, |
Initializes a new instance of the LinearFunction class.
|
public Derivative ( double x ) : double | ||
x | double | Function input value. |
return | double |
public Derivative2 ( double y ) : double | ||
y | double | Function output value - the value, which was obtained
/// with the help of |
return | double |
public Function ( double x ) : double | ||
x | double | Function input value. |
return | double |
public LinearFunction ( |
||
range | ||
return | System |
public LinearFunction ( double alpha ) : System | ||
alpha | double | |
return | System |
public LinearFunction ( double alpha, |
||
alpha | double | |
range | ||
return | System |