Uses of Enum Class
ffx.numerics.integrate.Integrate1DNumeric.IntegrationType
Packages that use Integrate1DNumeric.IntegrationType
Package
Description
The Integrate package implements 1D numerical integration.
-
Uses of Integrate1DNumeric.IntegrationType in ffx.numerics.integrate
Subclasses with type arguments of type Integrate1DNumeric.IntegrationType in ffx.numerics.integrateModifier and TypeClassDescriptionstatic enumEnumeration of implemented integration methods, and the number of points required by them.Methods in ffx.numerics.integrate that return Integrate1DNumeric.IntegrationTypeModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static Integrate1DNumeric.IntegrationType[]Integrate1DNumeric.IntegrationType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in ffx.numerics.integrate with parameters of type Integrate1DNumeric.IntegrationTypeModifier and TypeMethodDescriptionstatic double[]Integrate1DNumeric.integrateByBins(DataSet data, Integrate1DNumeric.IntegrationSide side, Integrate1DNumeric.IntegrationType maxType) Returns the contribution of each bin to the overall integral as an array; will be most accurate at break-points for the integration type.static doubleIntegrate1DNumeric.integrateData(DataSet data, Integrate1DNumeric.IntegrationSide side, Integrate1DNumeric.IntegrationType type) Generic caller for 1D integration schemes given an IntegrationType.