NumInt

This structure stores computing points and weights for numerical integration. In this type, a numerical integration is computed as int f(x) dx = sum_i f(xsi) wsi

Constructors

this
this(immutable(X)[] xs, immutable(W)[] ws)

Constructor

Members

Functions

integrate
auto integrate(Fn func)

Execute integration

Properties

ws
immutable(W)[] ws [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
xs
immutable(X)[] xs [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Meta