OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:imaginary2
(Results
1 - 1
of
1
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java
860
double
imaginary2
= 2.0 * imaginary;
local
861
double d = FastMath.cos(real2) + MathUtils.cosh(
imaginary2
);
863
return createComplex(FastMath.sin(real2) / d, MathUtils.sinh(
imaginary2
) / d);
898
double
imaginary2
= 2.0 * imaginary;
local
899
double d = MathUtils.cosh(real2) + FastMath.cos(
imaginary2
);
901
return createComplex(MathUtils.sinh(real2) / d, FastMath.sin(
imaginary2
) / d);
[
all
...]
Completed in 505 milliseconds