Enum ExtrapolationType
- Namespace
- VirtualLabAPI.Core.Numerics
- Assembly
- VirtualLabAPI.dll
Enum for the mode of extrapolation, applied to a ComplexField if coordinates outside its definition area are needed.
public enum ExtrapolationType
Fields
[EnumDescription("Border Value Continuation", false)] BorderContinuation = 1Each value outside of the domain of definition has the value of its closest border point.
[EnumDescription("Constant Value", false)] Constant = 0All values outside of the domain of definition have a fix, constant value.
[EnumDescription("Periodic Continuation", false)] Periodic = 2The data are periodic.