Package org.tensorics.core.reduction
Interface InterpolationStrategy<C,V>
-
- Type Parameters:
C- type of the coordinate, must extendsComparableV- type of the values in theTensor
- All Known Implementing Classes:
AbstractInterpolationStrategy,AbstractLinearDoubleInterpolationStrategy,LinearInterpolation
public interface InterpolationStrategy<C,V>The interface for the interpolation strategy in the tensors.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VgetInterpolatedValue(Tensor<V> tensorWithTheOnlyOneCoordinateOfC, C coordineteToInterpolate)Returns interpolated value for coordinate C.
-
-
-
Method Detail
-
getInterpolatedValue
V getInterpolatedValue(Tensor<V> tensorWithTheOnlyOneCoordinateOfC, C coordineteToInterpolate)
Returns interpolated value for coordinate C.- Parameters:
tensorWithTheOnlyOneCoordinateOfC- the tensor where only C coordinates are keptcoordineteToInterpolate-- Returns:
- the interpolated value
-
-