Package net.algart.math.functions
Class InverseNumberFunc
java.lang.Object
net.algart.math.functions.InverseNumberFunc
- All Implemented Interfaces:
Func
- Direct Known Subclasses:
InverseNumberFunc.Updatable
Inverse function: f(x0, x1, ..., xn-1) = c/x0 (c is some constant).
This class is immutable and thread-safe: there are no ways to modify settings of the created instance.
- Author:
- Daniel Alievsky
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from interface net.algart.math.functions.Func
ABS, ABS_DIFF, HALF_X_MINUS_Y, HALF_X_PLUS_Y, HALF_Y_MINUS_X, IDENTITY, MAX, MIN, POSITIVE_DIFF, REVERSE, SELECT, SELECT_FROM_8_DIRECTIONS_2D, SELECT_IF_GREATER, SELECT_IF_GREATER_OR_EQUAL, SHIFTS_ALONG_8_DIRECTIONS_2D, UPDATABLE_IDENTITY, X_MINUS_Y, X_PLUS_Y, Y_MINUS_X -
Method Summary
Modifier and TypeMethodDescriptiondoubleget()Equivalent toget(new double[0]).doubleget(double x0) Equivalent toget(new double[] {x0}).doubleget(double... x) Returns the result of this function for the given arguments: f(x0, x1, ..., xx.length-1).doubleget(double x0, double x1) Equivalent toget(new double[] {x0, x1}).doubleget(double x0, double x1, double x2) Equivalent toget(new double[] {x0, x1, x2}).doubleget(double x0, double x1, double x2, double x3) Equivalent toget(new double[] {x0, x1, x2, x3}).static InverseNumberFuncgetInstance(double c) Returns an instance of this class for the given constant c.static InverseNumberFunc.UpdatablegetUpdatableInstance(double c) Returns an instance of the updatable version of this class for the given constant c.toString()Returns a brief string description of this object.
-
Method Details
-
getInstance
Returns an instance of this class for the given constant c.- Parameters:
c- the numerator of fraction.- Returns:
- an instance of this class.
-
getUpdatableInstance
Returns an instance of the updatable version of this class for the given constant c.- Parameters:
c- the numerator of fraction.- Returns:
- an instance of the updatable version of this class.
-
get
public double get(double... x) Description copied from interface:FuncReturns the result of this function for the given arguments: f(x0, x1, ..., xx.length-1).This method must not change the values of x elements!
-
get
public double get()Description copied from interface:FuncEquivalent toget(new double[0]). Provides better performance because it does not require Java array creation. -
get
public double get(double x0) Description copied from interface:FuncEquivalent toget(new double[] {x0}). Provides better performance because it does not require Java array creation. -
get
public double get(double x0, double x1) Description copied from interface:FuncEquivalent toget(new double[] {x0, x1}). Provides better performance because it does not require Java array creation. -
get
public double get(double x0, double x1, double x2) Description copied from interface:FuncEquivalent toget(new double[] {x0, x1, x2}). Provides better performance because it does not require Java array creation. -
get
public double get(double x0, double x1, double x2, double x3) Description copied from interface:FuncEquivalent toget(new double[] {x0, x1, x2, x3}). Provides better performance because it does not require Java array creation. -
toString
Returns a brief string description of this object.
-