|
AlgART Home | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectnet.algart.math.functions.PowerFunc
net.algart.math.functions.PowerFunc.Updatable
public abstract static class PowerFunc.Updatable extends PowerFunc implements Func.Updatable
Updatable extension of the power function
with one argument.
| Modifier and Type | Class and Description |
|---|
| Nested classes/interfaces inherited from class net.algart.math.functions.PowerFunc |
|---|
PowerFunc.Updatable |
| Nested classes/interfaces inherited from interface net.algart.math.functions.Func |
|---|
Func.Updatable |
| Modifier and Type | Field and Description |
|---|
| 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 |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
set(double[] x,
double newResult)
Correct some of x arguments so that get(x) will be, as possible, equal to newResult. |
java.lang.String |
toString()
Returns a brief string description of this object. |
| Methods inherited from class net.algart.math.functions.PowerFunc |
|---|
get, get, get, get, get, getBinaryInstance, getInstance, getInstance, getStrictBinaryInstance, getStrictInstance, getStrictInstance, getUpdatableInstance, getUpdatableStrictInstance |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface net.algart.math.functions.Func |
|---|
get, get, get, get, get, get |
| Method Detail |
|---|
public abstract void set(double[] x,
double newResult)
Func.Updatableget(x) will be, as possible, equal to newResult.
For example, if this is one-argument function f(x),
and its inverse function is g(y) (g(f(x))=x),
then this method should assign x[0]=g(newResult).
This method does not guarantee the precise equality
get(x)==newResult. (Usually, it is impossible due to
limited precision of floating-point calculations.) But this method should try
to provide this equality (after its call) with, as possible, maximal possible precision.
set in interface Func.Updatablex - the function arguments.newResult - the desired function result.public java.lang.String toString()
toString in class PowerFunc
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||