File: graphing.html

package info (click to toggle)
drscheme 1%3A352-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 71,608 kB
  • ctags: 55,284
  • sloc: ansic: 278,966; cpp: 63,318; sh: 32,265; lisp: 14,530; asm: 7,327; makefile: 4,846; pascal: 4,363; perl: 2,920; java: 1,632; yacc: 755; lex: 258; sed: 93; xml: 12
file content (31 lines) | stat: -rw-r--r-- 1,001 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
<head>
<title>Teachpack : Graphing Functions</title>
</head>
<body bgcolor="#ffffff" text="#000000"
      link="#009900" vlink="#007700" alink="#cc0000">

<a href="index.html">Teachpacks for How to Design Programs</a>

<h1>Graphing Functions</h1>

<hr> <h3><a name="graphing.ss">graphing.ss</a></h3> <!-- DOCNOTE="teach=graphing.ss" -->

The teachpack <code>graphing.ss</code> provides two operations for
graphing functions in the regular (north-east) quadrant of the Cartesian
plane (between 0 and 10 in both directions):
graphics functions:
<menu>
<li><code><a name="graph-fun">graph-fun</a></code> : (number -> number) symbol -> true; <br>
draws a function in bulletized form with a given color
<li><code><a name="graph-line">graph-line</a></code> : (number -> number) symbol -> true (no arguments); <br>
draws a straight-line function with a given color
</menu>
For legal color symbols, see the documentation for the <a href=draw.html>draw.ss</a>
teachpack.
<br>

<br>
<br>
</body>
</html>