Produces the (primal) Chebyshev Vandermonde matrix based on
the points p
. C[i,j] = T_{i-1}p[j]
, where T_{i-1}
is the Chebyshev
polynomial of degree i-1
chebvand(p, m = NULL)
Vandermonde-like matrix for the Chebyshev polynomials
points to evaluate. If a scalar, then p
equally spaced points
on [0,1]
are used.
number of rows of the matrix. chebvand(p, m)
is the rectangular version of
chebvand(p)
with m
rows.