PlaneAlgebraicCurvePlot¶
acplot.spad line 48 [edit on github]
Plot a NON-SINGULAR plane algebraic curve p
(x
, y
) = 0. Author: Clifton J
. Williamson Date Created: Fall 1988 Keywords: algebraic curve, non-singular, plot Examples: References:
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- makeSketch: (Polynomial Integer, Symbol, Symbol, Segment Fraction Integer, Segment Fraction Integer) -> %
makeSketch(p, x, y, a..b, c..d)
creates an ACPLOT of the curvep = 0
in the region a <= x <= b, c <= y <= d. More specifically, ‘makeSketch’ plots a non-singular algebraic curvep = 0
in an rectangular region xMin <= x <= xMax, yMin <= y <= yMax. The user inputsmakeSketch(p, x, y, xMin..xMax, yMin..yMax)
. Herep
is a polynomial in the variablesx
andy
with integer coefficients (p
belongs to the domainPolynomial Integer
). The case wherep
is a polynomial in only one of the variables is allowed. The variablesx
andy
are input to specify the the coordinate axes. The horizontal axis is thex
-axis and the vertical axis is they
-axis. The rational numbers xMin, …, yMax specify the boundaries of the region in which the curve is to be plotted.
- refine: (%, DoubleFloat) -> %
refine(p, x)
is undocumented.
- xRange: % -> Segment DoubleFloat
- yRange: % -> Segment DoubleFloat