poly.calc.RdCalculate either the monic polynomial with specified zeros, or the Lagrange interpolation polynomial through the (x,y) points.
numeric vector specifying either the zeros of the desired polynomial if this is the only non-missing argument, or the x-values for Lagrange interpolation.
numeric vector or matrix specifying the y-values for the
Lagrange interpolation polynomial. If y is a matrix,
nrow(y) must equal length(x), and each column of
y is used separately with x.
An absolute value tolerance, below which coefficients are treated as zero.
If y is a matrix, lab is used as the names vector
for the list result.
If y is a matrix, the result is a list of polynomials using
each column separately.
If x only is given, repeated zeros are allowed. If x
and y are given, repeated values in the x vector must
have identical y values associated with them (up to
tol), otherwise the first y-value only is used and a warning
is issued.
Either a polynomial object, or a list of polynomials, as appropriate.
In the latter case the object is of class "polylist".