public class SpecialValue extends Object
| Modifier and Type | Field and Description |
|---|---|
static double |
EPSILON
Epsilon is used to compare the x value with regards to some given small interval
|
double |
fv
The function value in main unit
|
double |
fvdeg
The function value in degrees for inverse trigonometric functions
|
double |
x
The x value from f(x)
|
double |
xFrom
The start of the interval where the function value is considered to be by fv and fvdeg
|
double |
xTo
The end of the interval where the function value is considered to be by fv and fvdeg
|
| Constructor and Description |
|---|
SpecialValue(double x,
double fv)
Main constructor - functions only with main unit
|
SpecialValue(double x,
double fv,
double fvdeg)
Constructor - functions only with values in radians and degrees
|
public static final double EPSILON
public double x
public double xFrom
public double xTo
public double fv
public double fvdeg
public SpecialValue(double x,
double fv)
x - The value of x from f(x)fv - The value of f(x) for a given xpublic SpecialValue(double x,
double fv,
double fvdeg)
x - The value of x from f(x)fv - The value of f(x) in radians for a given xfvdeg - The value of f(x) in degrees for a given xCopyright © 2020 MathParser.org. All rights reserved.