Uses of Class
org.esa.snap.core.util.math.IntervalPartition
-
Packages that use IntervalPartition Package Description org.esa.snap.core.util.math Provides utility classes for mathematical operations. -
-
Uses of IntervalPartition in org.esa.snap.core.util.math
Methods in org.esa.snap.core.util.math that return IntervalPartition Modifier and Type Method Description static IntervalPartition[]
IntervalPartition. createArray(double[]... sequences)
Creates an array of interval partitions from an array of sequences.static IntervalPartition[]
IntervalPartition. createArray(float[]... sequences)
Creates an array of interval partitions from an array of sequences.IntervalPartition
LookupTable. getDimension(int i)
Returns the the ith dimension associated with the lookup table.IntervalPartition
MatrixLookupTable. getDimension(int i)
Returns the the ith dimension associated with the lookup table.IntervalPartition
VectorLookupTable. getDimension(int i)
Returns the the ith dimension associated with the lookup table.IntervalPartition[]
LookupTable. getDimensions()
Returns the dimensions associated with the lookup table.IntervalPartition[]
MatrixLookupTable. getDimensions()
Returns the dimensions associated with the lookup table.IntervalPartition[]
VectorLookupTable. getDimensions()
Returns the dimensions associated with the lookup table.Methods in org.esa.snap.core.util.math with parameters of type IntervalPartition Modifier and Type Method Description static void
LookupTable. computeFracIndex(IntervalPartition partition, double coordinate, FracIndex fracIndex)
Computes theFracIndex
of a coordinate value with respect to a given interval partition.Constructors in org.esa.snap.core.util.math with parameters of type IntervalPartition Constructor Description LookupTable(double[] values, IntervalPartition... dimensions)
Constructs a lookup table for the lookup values and dimensions supplied as arguments.LookupTable(float[] values, IntervalPartition... dimensions)
Constructs a lookup table for the lookup values and dimensions supplied as arguments.MatrixLookupTable(int m, int n, MatrixFactory matrixFactory, double[] values, IntervalPartition... dimensions)
MatrixLookupTable(int m, int n, MatrixFactory matrixFactory, float[] values, IntervalPartition... dimensions)
VectorLookupTable(int length, double[] values, IntervalPartition... dimensions)
Constructs an array lookup table for the lookup values and dimensions supplied as arguments.VectorLookupTable(int length, float[] values, IntervalPartition... dimensions)
Constructs an array lookup table for the lookup values and dimensions supplied as arguments.
-