Points Method for Polynomials

Usage

points(p, length = 100, ...)

Arguments

p An object of class polynomial
length Size of x vector at which evaluations are to be made
... Additional arguments as for the points generic

Description

Add a polynomial to an existing plot usually as a point plot.

Points representing the given polynomial are added to an existing plot. Values outside the current plot region are not shown.

Value

As for the points generic.

See Also

plot, lines, points, plot.polynomial, lines.polynomial

Examples

p <- poly.from.zeros(-1:5)
plot(p)
lines(poly.from.zeros(2:4), lty=2)
points(poly.from.zeros(-2:6), pch=4)


[Package Contents]