Uses of Interface
org.ojalgo.function.ParameterFunction
-
Packages that use ParameterFunction Package Description org.ojalgo.array.operation Everythinng in this package should be considered library-private – it should only be used by other parts of ojAlgo! Code in this package is often refactored (api-breaking) without even a notice in the changelog.org.ojalgo.function org.ojalgo.matrix org.ojalgo.series.primitive org.ojalgo.structure -
-
Uses of ParameterFunction in org.ojalgo.array.operation
Methods in org.ojalgo.array.operation with parameters of type ParameterFunction Modifier and Type Method Description static voidOperationParameter. invoke(byte[] data, int first, int limit, int step, byte[] values, ParameterFunction<java.lang.Double> function, int param)static voidOperationParameter. invoke(double[] data, int first, int limit, int step, double[] values, ParameterFunction<java.lang.Double> function, int param)static voidOperationParameter. invoke(float[] data, int first, int limit, int step, float[] values, ParameterFunction<java.lang.Double> function, int param)static voidOperationParameter. invoke(int[] data, int first, int limit, int step, int[] values, ParameterFunction<java.lang.Double> function, int param)static voidOperationParameter. invoke(long[] data, int first, int limit, int step, long[] values, ParameterFunction<java.lang.Double> function, int param)static voidOperationParameter. invoke(short[] data, int first, int limit, int step, short[] values, ParameterFunction<java.lang.Double> function, int param)static <N extends java.lang.Comparable<N>>
voidOperationParameter. invoke(N[] data, int first, int limit, int step, N[] values, ParameterFunction<N> function, int param)static <N extends java.lang.Comparable<N>>
voidOperationParameter. invoke(BasicArray<N> data, int first, int limit, int step, Access1D<N> value, ParameterFunction<N> function, int param) -
Uses of ParameterFunction in org.ojalgo.function
Subinterfaces of ParameterFunction in org.ojalgo.function Modifier and Type Interface Description static interfaceBigFunction.Parameterstatic interfaceComplexFunction.Parameterstatic interfacePrimitiveFunction.Parameterstatic interfaceQuadrupleFunction.Parameterstatic interfaceQuaternionFunction.Parameterstatic interfaceRationalFunction.ParameterFields in org.ojalgo.function declared as ParameterFunction Modifier and Type Field Description private ParameterFunction<N>ParameterFunction.FixedParameter. myFunctionMethods in org.ojalgo.function that return ParameterFunction Modifier and Type Method Description default ParameterFunction<N>ParameterFunction. andThen(UnaryFunction<N> after)default ParameterFunction<N>ParameterFunction. compose(UnaryFunction<N> before)ParameterFunction<N>ParameterFunction.FixedParameter. getFunction()ParameterFunction<java.math.BigDecimal>BigFunction. power()ParameterFunction<ComplexNumber>ComplexFunction. power()abstract ParameterFunction<N>FunctionSet. power()ParameterFunction<java.lang.Double>PrimitiveFunction. power()ParameterFunction<Quadruple>QuadrupleFunction. power()ParameterFunction<Quaternion>QuaternionFunction. power()ParameterFunction<RationalNumber>RationalFunction. power()ParameterFunction<java.math.BigDecimal>BigFunction. root()ParameterFunction<ComplexNumber>ComplexFunction. root()abstract ParameterFunction<N>FunctionSet. root()ParameterFunction<java.lang.Double>PrimitiveFunction. root()ParameterFunction<Quadruple>QuadrupleFunction. root()ParameterFunction<Quaternion>QuaternionFunction. root()ParameterFunction<RationalNumber>RationalFunction. root()ParameterFunction<java.math.BigDecimal>BigFunction. scale()ParameterFunction<ComplexNumber>ComplexFunction. scale()abstract ParameterFunction<N>FunctionSet. scale()ParameterFunction<java.lang.Double>PrimitiveFunction. scale()ParameterFunction<Quadruple>QuadrupleFunction. scale()ParameterFunction<Quaternion>QuaternionFunction. scale()ParameterFunction<RationalNumber>RationalFunction. scale()Constructors in org.ojalgo.function with parameters of type ParameterFunction Constructor Description FixedParameter(ParameterFunction<N> function, int param) -
Uses of ParameterFunction in org.ojalgo.matrix
Methods in org.ojalgo.matrix with parameters of type ParameterFunction Modifier and Type Method Description MBasicMatrix. onAll(ParameterFunction<N> operator, int parameter) -
Uses of ParameterFunction in org.ojalgo.series.primitive
Methods in org.ojalgo.series.primitive with parameters of type ParameterFunction Modifier and Type Method Description voidDataSeries. modify(ParameterFunction<java.lang.Double> func, int param) -
Uses of ParameterFunction in org.ojalgo.structure
Methods in org.ojalgo.structure with parameters of type ParameterFunction Modifier and Type Method Description default POperate1D. onAll(ParameterFunction<N> operator, int parameter)default POperate2D. onAll(ParameterFunction<N> operator, int parameter)default POperateAnyD. onAll(ParameterFunction<N> operator, int parameter)
-