Table of Contents

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 = 1

Each value outside of the domain of definition has the value of its closest border point.

[EnumDescription("Constant Value", false)] Constant = 0

All values outside of the domain of definition have a fix, constant value.

[EnumDescription("Periodic Continuation", false)] Periodic = 2

The data are periodic.