PlotFunctions1 SΒΆ
plot.spad line 509 [edit on github]
PlotFunctions1
provides facilities for plotting curves where functions SF
->
SF
are specified by giving an expression
- plot: (S, S, Symbol, Segment DoubleFloat) -> Plot
plot(f, g, t, seg)
plots the graph ofx = f(t)
,y = g(t)
ast
ranges over an interval.
- plot: (S, Symbol, Segment DoubleFloat) -> Plot
plot(fcn, x, seg)
plots the graph ofy = f(x)
on a interval
- plotPolar: (S, Symbol) -> Plot
plotPolar(f, theta)
plots the graph ofr = f(theta)
as theta ranges from 0 to 2pi
- plotPolar: (S, Symbol, Segment DoubleFloat) -> Plot
plotPolar(f, theta, seg)
plots the graph ofr = f(theta)
astheta
ranges over an interval