public class LinearApproximation extends InterpolationAlgorithm
Modifier | Constructor and Description |
---|---|
|
LinearApproximation()
Initializes a new instance.
|
protected |
LinearApproximation(LinearApproximation existingInstance,
CopyContext context)
Initializes a new instance as a copy of an existing instance.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
checkForSameDefinition(InterpolationAlgorithm other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
protected boolean |
checkForSameDefinition(LinearApproximation other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
Object |
clone(CopyContext context)
Clones this object using the specified context.
|
protected int |
computeCurrentDefinitionHashCode()
Computes a hash code based on the current properties of this object.
|
int |
getDegreeRequired()
Gets the minimum degree of approximation that this interpolator can perform.
|
Interpolator |
getInterpolator(EvaluatorGroup group)
Gets an evaluator which can compute the interpolated value of a function.
|
int |
getOrderRequired()
Gets the number of derivatives of the dependent variable that are required on input
in order to interpolate using this interpolation algorithm.
|
static int |
getRequiredDataPoints(int degree)
Gets the number of data points needed to interpolate with the desired degree of accuracy.
|
static double[] |
interpolate(double x,
double[] xTable,
double[] yTable,
int yStride,
int inputOrder,
int outputOrder,
int startIndex,
int length)
Interpolates a dependent value corresponding to an independent value when supplied 2 distinct
independent values and at least 1 dependent value per independent value.
|
static double |
interpolate(double x,
double x0,
double y0,
double x1,
double y1)
Interpolate method that can be called with the coordinates of the 2 points and the independent variable
to be interpolated.
|
checkForSameDefinition, getInterpolator
areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, areSameDefinition, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, collectionItemsAreSameDefinition, dictionaryItemsAreSameDefinition, enumerateDependencies, freeze, freezeAggregatedObjects, getCollectionHashCode, getCollectionHashCode, getCollectionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDefinitionHashCode, getDictionaryHashCode, getIsFrozen, isSameDefinition, throwIfFrozen
public LinearApproximation()
protected LinearApproximation(@Nonnull LinearApproximation existingInstance, @Nonnull CopyContext context)
See ICloneWithContext.clone(CopyContext)
for more information about how to implement this constructor
in a derived class.
existingInstance
- The existing instance to copy.context
- A CopyContext
that controls the depth of the copy.ArgumentNullException
- Thrown when existingInstance
or context
is null
.public Object clone(CopyContext context)
This method should be implemented to call a copy constructor on the class of the
object being cloned. The copy constructor should take the CopyContext
as a parameter
in addition to the existing instance to copy. The copy constructor should first call
CopyContext.addObjectMapping(T, T)
to identify the newly constructed instance
as a copy of the existing instance. It should then copy all fields, using
CopyContext.updateReference(T)
to copy any reference fields.
A typical implementation of ICloneWithContext
:
public static class MyClass implements ICloneWithContext {
public MyClass(MyClass existingInstance, CopyContext context) {
context.addObjectMapping(existingInstance, this);
someReference = context.updateReference(existingInstance.someReference);
}
@Override
public final Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
}
In general, all fields that are reference types should be copied with a call to
CopyContext.updateReference(T)
. There are a couple of exceptions:
If one of these exceptions applies, the CopyContext
should be given an opportunity
to update the reference before the reference is copied explicitly. Use
CopyContext.updateReference(T)
to update the reference. If CopyContext.updateReference(T)
returns
the original object, indicating that the context does not have a replacement registered,
then copy the object manually by invoking a Clone method, a copy constructor, or by manually
constructing a new instance and copying the values.
alwaysCopy = context.updateReference(existingInstance.alwaysCopy);
if (existingInstance.alwaysCopy != null && alwaysCopy == existingInstance.alwaysCopy) {
alwaysCopy = (AlwaysCopy) existingInstance.alwaysCopy.clone(context);
}
If you are implementing an evaluator (a class that implements IEvaluator
), the
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
method shares some responsibilities with the
copy context constructor. Code duplication can be avoided by doing the following:
CopyContext.updateReference(T)
. You should still call CopyContext.updateReference(T)
on any references to
non-evaluators.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as the last line in the constructor and pass it the
same CopyContext
passed to the constructor.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as normal. See the reference documentation for
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
for more information on implementing that method.
public MyClass(MyClass existingInstance, CopyContext context) {
super(existingInstance, context);
someReference = context.updateReference(existingInstance.someReference);
evaluatorReference = existingInstance.evaluatorReference;
updateEvaluatorReferences(context);
}
@Override
public void updateEvaluatorReferences(CopyContext context) {
evaluatorReference = context.updateReference(evaluatorReference);
}
@Override
public Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
private IEvaluator evaluatorReference;
clone
in interface ICloneWithContext
clone
in class DefinitionalObject
context
- The context to use to perform the copy.protected final boolean checkForSameDefinition(InterpolationAlgorithm other)
true
if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false
for all derived-class instances.
Derived classes should check the type of other
to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object)
.checkForSameDefinition
in class InterpolationAlgorithm
other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected boolean checkForSameDefinition(LinearApproximation other)
true
if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false
for all derived-class instances.
Derived classes should check the type of other
to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object)
.other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected int computeCurrentDefinitionHashCode()
LinearApproximation.checkForSameDefinition(agi.foundation.numericalmethods.advanced.InterpolationAlgorithm)
method.computeCurrentDefinitionHashCode
in class InterpolationAlgorithm
public int getDegreeRequired()
getDegreeRequired
in class InterpolationAlgorithm
public int getOrderRequired()
getOrderRequired
in class InterpolationAlgorithm
public Interpolator getInterpolator(EvaluatorGroup group)
getInterpolator
in class InterpolationAlgorithm
group
- The group with which to associate the new evaluator. By grouping evaluators
that are often evaluated at the same Julian dates, common computations can be performed only once
for the entire group instead of multiple times for each evaluator.public static int getRequiredDataPoints(int degree)
degree
- The degree of polynomial approximation desired.IllegalStateException
- If degree
is not 1.public static double interpolate(double x, double x0, double y0, double x1, double y1)
This interpolation algorithm only returns the interpolated value and does not return derivative information.
x
- The independent variable for which the dependent variable will be interpolated.x0
- The first independent variable to be used to interpolate.y0
- The first dependent variable to be used to interpolate.x1
- The second independent variable to be used to interpolate. Cannot be equal to x0
.y1
- The second dependent variable to be used to interpolate.IllegalStateException
- Thrown when x1
equals x0
.@Nonnull public static double[] interpolate(double x, @Nonnull double[] xTable, @Nonnull double[] yTable, int yStride, int inputOrder, int outputOrder, int startIndex, int length)
x
- The independent variable for which the dependent variables will be interpolated.xTable
- The array of independent variables to use to interpolate. The values
in this array must be in increasing order and the same value must not occur twice in the array.
Only 2 values from this array will be used in the interpolation.yTable
- The array of dependent variables to use to interpolate.
There can be multiple values corresponding to each independent values in xTable
.
For a set of three dependent values (p,q,w) and their derivatives (dp, dq, dw) at time 1 and time 2
this should be as follows: {p1, q1, w1, dp1, dq1, dw1, p2, q2, w2, dp2, dq2, dw2}.yStride
- The number of dependent variable values in yTable
corresponding to
each independent variable value in xTable
. If inputOrder
is greater than 0, this is also the number of first derivative values, second derivative
values, etc. corresponding to each value in xTable
.inputOrder
- The number of dependent variable derivatives in yTable
. If this value is 0,
the yTable
is assumed to contain only dependent variable values, with each
yStride
of them corresponding to a single independent variable in the
xTable
. If this value is 1, the yTable
is assumed to
contain not only the dependent variable values but also their derivatives. There are
yStride
dependent variable values followed by yStride
dependent variable first derivatives corresponding to each independent variable value
in xTable
. Similarly if this value is 2, the
yTable
contains dependent values, first derivatives, and second derivatives.
The returned array will have the linearly interpolated values of all given orders, so the derivative
of the zeroth order result data may not necessarily be the same as the values in the first order of the
result data.outputOrder
- The number of derivatives to return. To return just the dependent variable values,
pass 0 for this parameter. To return the first derivatives along with the dependent variable values,
pass 1. If a number greater than 1 is passed, zeroes will be returned for all the derivatives past the first degree.startIndex
- The index in xTable
of the first value to use in the interpolation.
The index of the first value in yTable
to use is calculated as:
* * ( + 1)
length
- The number of values to use in the interpolation. This number must be 2 for the interpolation algorithm to work correctly.outputOrder
.ArgumentOutOfRangeException
- Thrown when length
does not equal 2, startIndex
is outside the bounds of
xTable
, or yStride
is less than or equal to zero.ArgumentNullException
- Thrown when xTable
or yTable
is null
.