|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.math.complex.ComplexUtils
Implementations of various transcendental functions for
Complex
arguments.
Reference:
Method Summary | |
static Complex |
acos(Complex z)
Compute the inverse cosine for the given complex argument. |
static Complex |
asin(Complex z)
Compute the inverse sine for the given complex argument. |
static Complex |
atan(Complex z)
Compute the inverse tangent for the given complex argument. |
static Complex |
cos(Complex z)
Compute the cosine for the given complex argument. |
static Complex |
cosh(Complex z)
Compute the hyperbolic cosine for the given complex argument. |
static Complex |
exp(Complex z)
Compute the exponential function for the given complex argument. |
static Complex |
log(Complex z)
Compute the natural logarithm for the given complex argument. |
static Complex |
pow(Complex y,
Complex x)
Returns of value of y raised to the power of x . |
static Complex |
sin(Complex z)
Compute the sine for the given complex argument. |
static Complex |
sinh(Complex z)
Compute the hyperbolic sine for the given complex argument. |
static Complex |
sqrt(Complex z)
Compute the squre root for the given complex argument. |
static Complex |
sqrt1z(Complex z)
Compute the squre root of 1 - z 2 for the given complex argument. |
static Complex |
tan(Complex z)
Compute the tangent for the given complex argument. |
static Complex |
tanh(Complex z)
Compute the hyperbolic tangent for the given complex argument. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static Complex acos(Complex z)
z
- the value whose inverse cosine is to be returned.
z
.public static Complex asin(Complex z)
z
- the value whose inverse sine is to be returned.
z
.public static Complex atan(Complex z)
z
- the value whose inverse tangent is to be returned.
z
.public static Complex cos(Complex z)
z
- the value whose cosine is to be returned.
z
.public static Complex cosh(Complex z)
z
- the value whose hyperbolic cosine is to be returned.
z
.public static Complex exp(Complex z)
z
- the value.
z
.public static Complex log(Complex z)
z
- the value.
z
.public static Complex pow(Complex y, Complex x)
y
raised to the power of x
.
y
- the base.x
- the exponent.
y
z
.public static Complex sin(Complex z)
z
- the value whose sine is to be returned.
z
.public static Complex sinh(Complex z)
z
- the value whose hyperbolic sine is to be returned.
z
.public static Complex sqrt(Complex z)
z
- the value whose square root is to be returned.
z
.public static Complex sqrt1z(Complex z)
z
2 for the given complex argument.
z
- the value.
z
2.public static Complex tan(Complex z)
z
- the value whose tangent is to be returned.
z
.public static Complex tanh(Complex z)
z
- the value whose hyperbolic tangent is to be returned.
z
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |