lagvander3d(x, y, z, deg)
Returns the pseudo-Vandermonde matrix of degrees :None:None:`deg`
and sample points :None:None:`(x, y, z)`
. If :None:None:`l, m, n`
are the given degrees in :None:None:`x, y, z`
, then The pseudo-Vandermonde matrix is defined by
where :None:None:`0 <= i <= l`
, :None:None:`0 <= j <= m`
, and :None:None:`0 <= j <= n`
. The leading indices of :None:None:`V`
index the points :None:None:`(x, y, z)`
and the last index encodes the degrees of the Laguerre polynomials.
If V = lagvander3d(x, y, z, [xdeg, ydeg, zdeg])
, then the columns of :None:None:`V`
correspond to the elements of a 3-D coefficient array :None:None:`c`
of shape (xdeg + 1, ydeg + 1, zdeg + 1) in the order
and np.dot(V, c.flat)
and lagval3d(x, y, z, c)
will be the same up to roundoff. This equivalence is useful both for least squares fitting and for the evaluation of a large number of 3-D Laguerre series of the same degrees and sample points.
Arrays of point coordinates, all of the same shape. The dtypes will be converted to either float64 or complex128 depending on whether any of the elements are complex. Scalars are converted to 1-D arrays.
List of maximum degrees of the form [x_deg, y_deg, z_deg].
The shape of the returned matrix is x.shape + (order,)
, where $order = (deg[0]+1)*(deg[1]+1)*(deg[2]+1)$
. The dtype will be the same as the converted x
, y
, and z
.
Pseudo-Vandermonde matrix of given degrees.
The following pages refer to to this document either explicitly or contain code examples using this.
numpy.polynomial.laguerre.lagvander2d
numpy.polynomial.laguerre.lagvander3d
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them