Contours
Summary
Numerics.Contour.Quad
Generic "contour" specified only by its nodes and weights.
Numerics.Contour.Quad.inside
Determine if a point pt
is inside the convex hull of the contour
Numerics.Contour.Circle
flowchart TB
Circle[Circle]
Quad[Quad]
matlab_mixin_Copyable[matlab.mixin.Copyable]
Quad --> Circle
matlab_mixin_Copyable --> Quad
Circular contour specified by a center gamma
, radius rho
, and number of quadrature nodes N
.
Numerics.Contour.Circle.interlevedshifts
Returns a set of left and right interleaved shifts with nsw
shifts each. The shifts are placed d
*\(\rho\) or d
+\(\rho\) away from the center of the contour depending on setting mode=scale
or mode=shift
, respectively.
Parameters:
-
nsw
– -
d
– -
mode
– -
variant
–or 'trap'
Numerics.Contour.Circle.refineQuadrature
Scales the number of quadrature points of the contour by a factor rf
and explicitly updates the contour.
Numerics.Contour.Ellipse
flowchart TB
matlab_mixin_Copyable[matlab.mixin.Copyable]
Quad[Quad]
Ellipse[Ellipse]
Quad --> Ellipse
matlab_mixin_Copyable --> Quad
Ellipsoidal contour specified by a center gamma
, horizontal and vertical semi-radii alpha
and beta
, and number of quadrature nodes N
.