
Including ClassPad Functions in Programs
12-7 Including ClassPad Functions in Programs
Including Graphing Functions in a ProgramGraphing functions let your program graph multiple equations, or overlay multiple graphs on the same screen.
Example: DefaultSetup ClrGraph
ViewWindow 0, 7.7, 1,
Define y1(x) = x^4 – x^3 – 24x^2 + 4x + 80 GTSelOn 1
PTDot 1 SheetActive 1 DrawGraph
Using Conics Functions in a ProgramConics functions make it possible for your program to draw conics graphs.
Example: ClrGraph
ViewWindow
"(x – 1)^2/3^2 + (y – 2)^2/4^2 = 1" SConicsEq
DrawConics
20060301