OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ComposableFunction
(Results
1 - 3
of
3
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java
30
public abstract class
ComposableFunction
implements UnivariateRealFunction {
33
public static final
ComposableFunction
ZERO = new
ComposableFunction
() {
42
public static final
ComposableFunction
ONE = new
ComposableFunction
() {
51
public static final
ComposableFunction
IDENTITY = new
ComposableFunction
() {
59
/** The {@code FastMath.abs} method wrapped as a {@link
ComposableFunction
}. */
60
public static final
ComposableFunction
ABS = new
ComposableFunction
() {
[
all
...]
BinaryFunction.java
96
public
ComposableFunction
fix1stArgument(final double fixedX) {
97
return new
ComposableFunction
() {
110
public
ComposableFunction
fix2ndArgument(final double fixedY) {
111
return new
ComposableFunction
() {
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java
27
import org.apache.commons.math.analysis.
ComposableFunction
;
356
return mapToSelf(
ComposableFunction
.ABS);
370
return mapToSelf(
ComposableFunction
.ACOS);
384
return mapToSelf(
ComposableFunction
.ASIN);
398
return mapToSelf(
ComposableFunction
.ATAN);
412
return mapToSelf(
ComposableFunction
.CBRT);
426
return mapToSelf(
ComposableFunction
.CEIL);
440
return mapToSelf(
ComposableFunction
.COS);
454
return mapToSelf(
ComposableFunction
.COSH);
482
return mapToSelf(
ComposableFunction
.EXP)
[
all
...]
Completed in 559 milliseconds