Enumerates the integration rules available for three-dimensional numerical integration.
Namespace:
Extreme.Mathematics.Calculus
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum AdaptiveIntegratorNDRule
Public Enumeration AdaptiveIntegratorNDRule
public enum class AdaptiveIntegratorNDRule
type AdaptiveIntegratorNDRule
| Member name | Value | Description |
---|
| Default | 0 |
Use the integration rule of order 9.
|
| Order9 | 1 |
Use the integration rule of order 9. This is recommended for functions that
require a lot of subdivisions.
|
| Order7 | 2 |
Use the integration rule of order 7. This is recommended for functions that
require a lot of subdivisions.
|
| Use3DRule | 99 |
Use the rule for 3-dimensional integration specified by
the IntegrationRule3D property.
|
Reference