repo.or.cz
/
maxima.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove some debugging prints and add comments
[maxima.git]
/
doc
/
info
/
figures
/
draw_points.mac
blob
dd7287dc16d805f7f0fa0c753d33cee57ae27a9f
1
load("docdraw.mac");
2
3
docdraw2d("figures/draw_points",
4
key = "Small points",
5
points(makelist([random(20),random(50)],k,1,10)),
6
point_type = circle,
7
point_size = 3,
8
points_joined = true,
9
key = "Great points",
10
points(makelist(k,k,1,20),makelist(random(30),k,1,20)),
11
point_type = filled_down_triangle,
12
key = "Automatic abscissas",
13
color = red,
14
points([2,12,8]))$