Uses of Interface
org.hipparchus.Field
-
Packages that use Field Package Description org.hipparchus Common classes used throughout the Hipparchus library.org.hipparchus.analysis Parent package for common numerical analysis procedures, including root finding, function interpolation and integration.org.hipparchus.analysis.differentiation This package holds the main interfaces and basic building block classes dealing with differentiation.org.hipparchus.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.hipparchus.analysis.integration.gauss Gauss family of quadrature schemes.org.hipparchus.analysis.polynomials Univariate real polynomials implementations, seen as differentiable univariate real functions.org.hipparchus.complex Complex number type and implementations of complex transcendental functions.org.hipparchus.dfp Decimal floating point library for Javaorg.hipparchus.fraction Fraction number type and fraction number formatting.org.hipparchus.geometry.euclidean.threed This package provides basic 3D geometry components.org.hipparchus.geometry.euclidean.twod This package provides basic 2D geometry components.org.hipparchus.linear Linear algebra support.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Eventsorg.hipparchus.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems.org.hipparchus.util Convenience routines and common data structures used throughout the Hipparchus library. -
-
Uses of Field in org.hipparchus
Methods in org.hipparchus that return Field Modifier and Type Method Description Field<T>
FieldElement. getField()
Get theField
to which the instance belongs. -
Uses of Field in org.hipparchus.analysis
-
Uses of Field in org.hipparchus.analysis.differentiation
Classes in org.hipparchus.analysis.differentiation that implement Field Modifier and Type Class Description static class
DSFactory.DSField
Field for {link DerivativeStructure} instances.static class
FDSFactory.DerivativeField<T extends CalculusFieldElement<T>>
Field for {link FieldDerivativeStructure} instances.class
FieldGradientField<T extends CalculusFieldElement<T>>
Field forGradient
instances.class
FieldUnivariateDerivative1Field<T extends CalculusFieldElement<T>>
Field forFieldUnivariateDerivative1
instances.class
FieldUnivariateDerivative2Field<T extends CalculusFieldElement<T>>
Field forFieldUnivariateDerivative2
instances.class
GradientField
Field forGradient
instances.class
UnivariateDerivative1Field
Field forUnivariateDerivative1
instances.class
UnivariateDerivative2Field
Field forUnivariateDerivative2
instances.Methods in org.hipparchus.analysis.differentiation that return Field Modifier and Type Method Description Field<DerivativeStructure>
DerivativeStructure. getField()
Get theField
to which the instance belongs.Field<FieldDerivativeStructure<T>>
FieldDerivativeStructure. getField()
Get theField
to which the instance belongs.Field<SparseGradient>
SparseGradient. getField()
Get theField
to which the instance belongs.Field<T>
FDSFactory. getValueField()
Get theField
the value and parameters of the function belongs to.Field<T>
FieldGradient. getValueField()
Get theField
the value and parameters of the function belongs to.Field<T>
FieldUnivariateDerivative1. getValueField()
Get theField
the value and parameters of the function belongs to.Field<T>
FieldUnivariateDerivative2. getValueField()
Get theField
the value and parameters of the function belongs to.Methods in org.hipparchus.analysis.differentiation with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
FieldGradientField<T>FieldGradientField. getField(Field<T> valueField, int parameters)
Get the field for number of free parameters.static <T extends CalculusFieldElement<T>>
FieldUnivariateDerivative1Field<T>FieldUnivariateDerivative1Field. getUnivariateDerivative1Field(Field<T> valueField)
Get the univariate derivative field corresponding to a value field.static <T extends CalculusFieldElement<T>>
FieldUnivariateDerivative2Field<T>FieldUnivariateDerivative2Field. getUnivariateDerivative2Field(Field<T> valueField)
Get the univariate derivative field corresponding to a value field.Constructors in org.hipparchus.analysis.differentiation with parameters of type Field Constructor Description FDSFactory(Field<T> valueField, int parameters, int order)
Simple constructor.FieldTaylorMap(Field<T> valueField, int parameters, int order, int nbFunctions)
Constructor for identity map. -
Uses of Field in org.hipparchus.analysis.integration
Methods in org.hipparchus.analysis.integration that return Field Modifier and Type Method Description Field<T>
BaseAbstractFieldUnivariateIntegrator. getField()
Get the field to which function argument and value belong.Constructors in org.hipparchus.analysis.integration with parameters of type Field Constructor Description BaseAbstractFieldUnivariateIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy)
Construct an integrator with given accuracies.BaseAbstractFieldUnivariateIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Construct an integrator with given accuracies and iteration counts.BaseAbstractFieldUnivariateIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount)
Construct an integrator with given iteration counts.FieldMidPointIntegrator(Field<T> field)
Construct a midpoint integrator with default settings.FieldMidPointIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Build a midpoint integrator with given accuracies and iterations counts.FieldMidPointIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount)
Build a midpoint integrator with given iteration counts.FieldRombergIntegrator(Field<T> field)
Construct a Romberg integrator with default settingsFieldRombergIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Build a Romberg integrator with given accuracies and iterations counts.FieldRombergIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount)
Build a Romberg integrator with given iteration counts.FieldSimpsonIntegrator(Field<T> field)
Construct an integrator with default settings.FieldSimpsonIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Build a Simpson integrator with given accuracies and iterations counts.FieldSimpsonIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount)
Build a Simpson integrator with given iteration counts.FieldTrapezoidIntegrator(Field<T> field)
Construct a trapezoid integrator with default settings.FieldTrapezoidIntegrator(Field<T> field, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Build a trapezoid integrator with given accuracies and iterations counts.FieldTrapezoidIntegrator(Field<T> field, int minimalIterationCount, int maximalIterationCount)
Build a trapezoid integrator with given iteration counts.IterativeLegendreFieldGaussIntegrator(Field<T> field, int n, double relativeAccuracy, double absoluteAccuracy)
Builds an integrator with given accuracies.IterativeLegendreFieldGaussIntegrator(Field<T> field, int n, double relativeAccuracy, double absoluteAccuracy, int minimalIterationCount, int maximalIterationCount)
Builds an integrator with given accuracies and iterations counts.IterativeLegendreFieldGaussIntegrator(Field<T> field, int n, int minimalIterationCount, int maximalIterationCount)
Builds an integrator with given iteration counts. -
Uses of Field in org.hipparchus.analysis.integration.gauss
Methods in org.hipparchus.analysis.integration.gauss that return Field Modifier and Type Method Description Field<T>
FieldAbstractRuleFactory. getField()
Get the field to which rule coefficients belong.Constructors in org.hipparchus.analysis.integration.gauss with parameters of type Field Constructor Description FieldAbstractRuleFactory(Field<T> field)
Simple constructorFieldGaussIntegratorFactory(Field<T> field)
Simple constructor.FieldHermiteRuleFactory(Field<T> field)
Simple constructorFieldLaguerreRuleFactory(Field<T> field)
Simple constructorFieldLegendreRuleFactory(Field<T> field)
Simple constructor -
Uses of Field in org.hipparchus.analysis.polynomials
Methods in org.hipparchus.analysis.polynomials that return Field Modifier and Type Method Description Field<T>
FieldPolynomialFunction. getField()
Get theField
to which the instance belongs.Field<T>
FieldPolynomialSplineFunction. getField()
Get theField
to which the instance belongs.Methods in org.hipparchus.analysis.polynomials with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
SmoothStepFactory.FieldSmoothStepFunction<T>SmoothStepFactory. getClamp(Field<T> field)
Get theclamping smoothstep function
.static <T extends CalculusFieldElement<T>>
SmoothStepFactory.FieldSmoothStepFunction<T>SmoothStepFactory. getCubic(Field<T> field)
Get thecubic smoothstep function
.static <T extends CalculusFieldElement<T>>
SmoothStepFactory.FieldSmoothStepFunction<T>SmoothStepFactory. getFieldGeneralOrder(Field<T> field, int N)
Create asmoothstep function
of order 2N + 1.static <T extends CalculusFieldElement<T>>
SmoothStepFactory.FieldSmoothStepFunction<T>SmoothStepFactory. getQuadratic(Field<T> field)
Get thequadratic smoothstep function
.static <T extends CalculusFieldElement<T>>
SmoothStepFactory.FieldSmoothStepFunction<T>SmoothStepFactory. getQuintic(Field<T> field)
Get thequintic smoothstep function
. -
Uses of Field in org.hipparchus.complex
Classes in org.hipparchus.complex that implement Field Modifier and Type Class Description class
ComplexField
Representation of the complex numbers field.class
FieldComplexField<T extends CalculusFieldElement<T>>
Representation of the complex numbers field.Methods in org.hipparchus.complex that return Field Modifier and Type Method Description Field<T>
FieldComplex. getPartsField()
Get theField
the real and imaginary parts belong to.Methods in org.hipparchus.complex with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
FieldComplexField<T>FieldComplexField. getField(Field<T> partsField)
Get the field for complex numbers.static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getI(Field<T> field)
Get the square root of -1.static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getInf(Field<T> field)
Get a complex number representing "+INF + INFi".static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getMinusI(Field<T> field)
Get the square root of -1.static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getMinusOne(Field<T> field)
Get a complex number representing "-1.0 + 0.0i".static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getNaN(Field<T> field)
Get a complex number representing "NaN + NaNi".static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getOne(Field<T> field)
Get a complex number representing "1.0 + 0.0i".static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getPi(Field<T> field)
Get a complex number representing "Ï€ + 0.0i".static <T extends CalculusFieldElement<T>>
FieldComplex<T>FieldComplex. getZero(Field<T> field)
Get a complex number representing "0.0 + 0.0i". -
Uses of Field in org.hipparchus.dfp
Classes in org.hipparchus.dfp that implement Field Modifier and Type Class Description class
DfpField
Field for Decimal floating point instances. -
Uses of Field in org.hipparchus.fraction
Classes in org.hipparchus.fraction that implement Field Modifier and Type Class Description class
BigFractionField
Representation of the fractional numbers without any overflow field.class
FractionField
Representation of the fractional numbers field. -
Uses of Field in org.hipparchus.geometry.euclidean.threed
Methods in org.hipparchus.geometry.euclidean.threed with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
FieldRotation<T>FieldRotation. getIdentity(Field<T> field)
Get identity rotation.static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getMinusI(Field<T> field)
Get opposite of the first canonical vector (coordinates: -1, 0, 0).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getMinusJ(Field<T> field)
Get opposite of the second canonical vector (coordinates: 0, -1, 0).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getMinusK(Field<T> field)
Get opposite of the third canonical vector (coordinates: 0, 0, -1).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getNaN(Field<T> field)
Get a vector with all coordinates set to NaN.static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getNegativeInfinity(Field<T> field)
Get a vector with all coordinates set to negative infinity.static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getPlusI(Field<T> field)
Get first canonical vector (coordinates: 1, 0, 0).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getPlusJ(Field<T> field)
Get second canonical vector (coordinates: 0, 1, 0).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getPlusK(Field<T> field)
Get third canonical vector (coordinates: 0, 0, 1).static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getPositiveInfinity(Field<T> field)
Get a vector with all coordinates set to positive infinity.static <T extends CalculusFieldElement<T>>
FieldVector3D<T>FieldVector3D. getZero(Field<T> field)
Get null vector (coordinates: 0, 0, 0).Constructors in org.hipparchus.geometry.euclidean.threed with parameters of type Field Constructor Description FieldRotation(Field<T> field, Rotation r)
Build aFieldRotation
from aRotation
.FieldVector3D(Field<T> field, Vector3D v)
Build aFieldVector3D
from aVector3D
. -
Uses of Field in org.hipparchus.geometry.euclidean.twod
Methods in org.hipparchus.geometry.euclidean.twod with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getMinusI(Field<T> field)
Get opposite of the first canonical vector (coordinates: -1).static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getMinusJ(Field<T> field)
Get opposite of the second canonical vector (coordinates: 0, -1).static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getNaN(Field<T> field)
Get a vector with all coordinates set to NaN.static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getNegativeInfinity(Field<T> field)
Get a vector with all coordinates set to negative infinity.static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getPlusI(Field<T> field)
Get first canonical vector (coordinates: 1, 0).static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getPlusJ(Field<T> field)
Get second canonical vector (coordinates: 0, 1).static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getPositiveInfinity(Field<T> field)
Get a vector with all coordinates set to positive infinity.static <T extends CalculusFieldElement<T>>
FieldVector2D<T>FieldVector2D. getZero(Field<T> field)
Get null vector (coordinates: 0, 0).Constructors in org.hipparchus.geometry.euclidean.twod with parameters of type Field Constructor Description FieldVector2D(Field<T> field, Vector2D v)
Build aFieldVector2D
from aVector2D
. -
Uses of Field in org.hipparchus.linear
Methods in org.hipparchus.linear that return Field Modifier and Type Method Description protected static <T extends FieldElement<T>>
Field<T>AbstractFieldMatrix. extractField(T[] d)
Get the elements type from an array.protected static <T extends FieldElement<T>>
Field<T>AbstractFieldMatrix. extractField(T[][] d)
Get the elements type from an array.Field<T>
AbstractFieldMatrix. getField()
Get the type of field elements of the matrix.Field<T>
ArrayFieldVector. getField()
Get the type of field elements of the vector.Field<T>
FieldMatrix. getField()
Get the type of field elements of the matrix.Field<T>
FieldVector. getField()
Get the type of field elements of the vector.Field<T>
SparseFieldVector. getField()
Get the type of field elements of the vector.Methods in org.hipparchus.linear with parameters of type Field Modifier and Type Method Description static <T extends FieldElement<T>>
T[][]BlockFieldMatrix. createBlocksLayout(Field<T> field, int rows, int columns)
Create a data array in blocks layout.static <T extends FieldElement<T>>
FieldMatrix<T>MatrixUtils. createFieldIdentityMatrix(Field<T> field, int dimension)
Returnsdimension x dimension
identity matrix.static <T extends FieldElement<T>>
FieldMatrix<T>MatrixUtils. createFieldMatrix(Field<T> field, int rows, int columns)
Returns aFieldMatrix
with specified dimensions.static <T extends FieldElement<T>>
FieldVector<T>MatrixUtils. createFieldVector(Field<T> field, int dimension)
Creates aFieldVector
with specified dimensions.abstract <T extends CalculusFieldElement<T>>
intDependentVectorsHandler. manageDependent(Field<T> field, int index, List<FieldVector<T>> basis)
Manage a dependent vector.static <T extends CalculusFieldElement<T>>
List<FieldVector<T>>MatrixUtils. orthonormalize(Field<T> field, List<FieldVector<T>> independent, T threshold, DependentVectorsHandler handler)
Orthonormalize a list of vectors.Constructors in org.hipparchus.linear with parameters of type Field Constructor Description AbstractFieldMatrix(Field<T> field)
Creates a matrix with no dataAbstractFieldMatrix(Field<T> field, int rowDimension, int columnDimension)
Create a newFieldMatrix
with the supplied row and column dimensions.Array2DRowFieldMatrix(Field<T> field)
Creates a matrix with no dataArray2DRowFieldMatrix(Field<T> field, int rowDimension, int columnDimension)
Create a newFieldMatrix<T>
with the supplied row and column dimensions.Array2DRowFieldMatrix(Field<T> field, T[] v)
Create a new (column)FieldMatrix<T>
usingv
as the data for the unique column of the created matrix.Array2DRowFieldMatrix(Field<T> field, T[][] d)
Create a newFieldMatrix<T>
using the input array as the underlying data array.Array2DRowFieldMatrix(Field<T> field, T[][] d, boolean copyArray)
Create a newFieldMatrix<T>
using the input array as the underlying data array.ArrayFieldVector(Field<T> field)
Build a 0-length vector.ArrayFieldVector(Field<T> field, int size)
Construct a vector of zeroes.ArrayFieldVector(Field<T> field, T[] d)
Construct a vector from an array, copying the input array.ArrayFieldVector(Field<T> field, T[] d, boolean copyArray)
Create a new ArrayFieldVector using the input array as the underlying data array.ArrayFieldVector(Field<T> field, T[] d, int pos, int size)
Construct a vector from part of a array.ArrayFieldVector(Field<T> field, T[] v1, T[] v2)
Construct a vector by appending one vector to another vector.BlockFieldMatrix(Field<T> field, int rows, int columns)
Create a new matrix with the supplied row and column dimensions.SparseFieldMatrix(Field<T> field)
Create a matrix with no data.SparseFieldMatrix(Field<T> field, int rowDimension, int columnDimension)
Create a newSparseFieldMatrix
with the supplied row and column dimensions.SparseFieldVector(Field<T> field)
Build a 0-length vector.SparseFieldVector(Field<T> field, int dimension)
Construct a vector of zeroes.SparseFieldVector(Field<T> field, int dimension, int expectedSize)
Build a vector with known the sparseness (for advanced use only).SparseFieldVector(Field<T> field, T[] values)
Create from a Field array. -
Uses of Field in org.hipparchus.ode
Methods in org.hipparchus.ode that return Field Modifier and Type Method Description Field<T>
AbstractFieldIntegrator. getField()
Get the field to which state vector elements belong.Constructors in org.hipparchus.ode with parameters of type Field Constructor Description AbstractFieldIntegrator(Field<T> field, String name)
Build an instance.MultistepFieldIntegrator(Field<T> field, String name, int nSteps, int order, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build a multistep integrator with the given stepsize bounds.MultistepFieldIntegrator(Field<T> field, String name, int nSteps, int order, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build a multistep integrator with the given stepsize bounds. -
Uses of Field in org.hipparchus.ode.events
Constructors in org.hipparchus.ode.events with parameters of type Field Constructor Description FieldEventSlopeFilter(Field<E> field, T rawDetector, FilterType filter)
Wrap aeve,t detector
. -
Uses of Field in org.hipparchus.ode.nonstiff
Methods in org.hipparchus.ode.nonstiff with parameters of type Field Modifier and Type Method Description static <T extends CalculusFieldElement<T>>
AdamsNordsieckFieldTransformer<T>AdamsNordsieckFieldTransformer. getInstance(Field<T> field, int nSteps)
Get the Nordsieck transformer for a given field and number of steps.Constructors in org.hipparchus.ode.nonstiff with parameters of type Field Constructor Description AdamsBashforthFieldIntegrator(Field<T> field, int nSteps, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build an Adams-Bashforth integrator with the given order and step control parameters.AdamsBashforthFieldIntegrator(Field<T> field, int nSteps, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build an Adams-Bashforth integrator with the given order and step control parameters.AdamsFieldIntegrator(Field<T> field, String name, int nSteps, int order, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build an Adams integrator with the given order and step control parameters.AdamsFieldIntegrator(Field<T> field, String name, int nSteps, int order, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build an Adams integrator with the given order and step control parameters.AdamsMoultonFieldIntegrator(Field<T> field, int nSteps, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build an Adams-Moulton integrator with the given order and error control parameters.AdamsMoultonFieldIntegrator(Field<T> field, int nSteps, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build an Adams-Moulton integrator with the given order and error control parameters.AdaptiveStepsizeFieldIntegrator(Field<T> field, String name, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build an integrator with the given stepsize bounds.AdaptiveStepsizeFieldIntegrator(Field<T> field, String name, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build an integrator with the given stepsize bounds.ClassicalRungeKuttaFieldIntegrator(Field<T> field, T step)
Simple constructor.DormandPrince54FieldIntegrator(Field<T> field, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Simple constructor.DormandPrince54FieldIntegrator(Field<T> field, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Simple constructor.DormandPrince853FieldIntegrator(Field<T> field, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Simple constructor.DormandPrince853FieldIntegrator(Field<T> field, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Simple constructor.EmbeddedRungeKuttaFieldIntegrator(Field<T> field, String name, int fsal, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Build a Runge-Kutta integrator with the given Butcher array.EmbeddedRungeKuttaFieldIntegrator(Field<T> field, String name, int fsal, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Build a Runge-Kutta integrator with the given Butcher array.EulerFieldIntegrator(Field<T> field, T step)
Simple constructor.GillFieldIntegrator(Field<T> field, T step)
Simple constructor.HighamHall54FieldIntegrator(Field<T> field, double minStep, double maxStep, double[] vecAbsoluteTolerance, double[] vecRelativeTolerance)
Simple constructor.HighamHall54FieldIntegrator(Field<T> field, double minStep, double maxStep, double scalAbsoluteTolerance, double scalRelativeTolerance)
Simple constructor.LutherFieldIntegrator(Field<T> field, T step)
Simple constructor.MidpointFieldIntegrator(Field<T> field, T step)
Simple constructor.RungeKuttaFieldIntegrator(Field<T> field, String name, T step)
Simple constructor.ThreeEighthesFieldIntegrator(Field<T> field, T step)
Simple constructor. -
Uses of Field in org.hipparchus.util
Classes in org.hipparchus.util that implement Field Modifier and Type Class Description class
BigRealField
Representation of real numbers with arbitrary precision field.class
Binary64Field
The field ofdouble precision floating-point numbers
.Methods in org.hipparchus.util that return Field Modifier and Type Method Description Field<BigReal>
BigReal. getField()
Get theField
to which the instance belongs.Field<Binary64>
Binary64. getField()
Get theField
to which the instance belongs.Field<FieldTuple<T>>
FieldTuple. getField()
Get theField
to which the instance belongs.Field<Tuple>
Tuple. getField()
Get theField
to which the instance belongs.Methods in org.hipparchus.util with parameters of type Field Modifier and Type Method Description static <T extends FieldElement<T>>
T[]MathArrays. buildArray(Field<T> field, int length)
Build an array of elements.static <T extends FieldElement<T>>
T[][]MathArrays. buildArray(Field<T> field, int rows, int columns)
Build a double dimension array of elements.static <T extends FieldElement<T>>
T[][][]MathArrays. buildArray(Field<T> field, int l1, int l2, int l3)
Build a triple dimension array of elements.Constructors in org.hipparchus.util with parameters of type Field Constructor Description OpenIntToFieldHashMap(Field<T> field)
Build an empty map with default size and using zero for missing entries.OpenIntToFieldHashMap(Field<T> field, int expectedSize)
Build an empty map with specified size and using zero for missing entries.OpenIntToFieldHashMap(Field<T> field, int expectedSize, T missingEntries)
Build an empty map with specified size.OpenIntToFieldHashMap(Field<T> field, T missingEntries)
Build an empty map with default size
-