File: gistdemolow.py

package info (click to toggle)
python-scipy 0.6.0-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 32,016 kB
  • ctags: 46,675
  • sloc: cpp: 124,854; ansic: 110,614; python: 108,664; fortran: 76,260; objc: 424; makefile: 384; sh: 10
file content (464 lines) | stat: -rw-r--r-- 14,614 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
## Automatically adapted for scipy Oct 31, 2005 by

#! /usr/bin/env python
# Copyright (c) 1996, 1997, The Regents of the University of California.
# All rights reserved.  See Legal.htm for full text and disclaimer.
#  $Id: gistdemolow.py 1698 2006-03-14 23:12:10Z cookedm $
#  ---------------------------------------------------------------------
#
#  NAME:    gistdemolow.py
#  CHANGES:
#  11/08/04 mdh Fix typo on line 124 and 132. First arg should be 6.
#               Add font test #25 and a better histogram demo.
#  04/07/03 llc Add plh test.
#  03/14/03 llc Add test for plfp (test 23).
#  12/03/01 llc Correct titles for Test 12 and Test 18.
#               Add pltitle for Test 12.
#
#  ---------------------------------------------------------------------

from gist import *
import time
from math import pi

def grtest():

    print "\n\n         Pygist Comprehensive Graphics Test\n"
    print "This test suite is similar, but not exactly the same as yorick's grtest\n"
    print "Each frame will be described at the terminal."
    print "Compare what you see with the description, then"
    print "hit <RETURN> to see the next test, or q <RETURN> to quit.\n"
    if quitnow(): return
    pldefault(marks=1, width=0, type=1, style="work.gs", dpi=100)
    winkill(0)
    print "Test 1:  Commands: window (0, wait=1, dpi=75); plg([0, 1])"
    window (0, wait=1, dpi=75)
    plg([0, 1])
    print "A small (75 dpi) window with line marked A from (1,0) to (2,1)."
    if quitnow(): return
    winkill(0)

    print "Test 2:  Commands: plg([0,1])"
    plg([0,1])
    print "A large (100 dpi) window with line marked A from (1,0) to (2,1)."
    if quitnow(): return
    unzoom()

    print "Test 3:  Commands: plg([1, 0])"
    plg([1, 0])
    print "Added line marked B from (1,1) to (2,0) to previous plot."
    if quitnow(): return
    unzoom()

    print "Test 4:  Commands: logxy(1, 0)"
    logxy(1, 0)
    print "X axis now a log scale."
    if quitnow(): return
    unzoom()

    print "Test 5:  Commands: logxy(0, 0)"
    logxy(0, 0)
    print "X axis back to linear scale."
    if quitnow(): return
    unzoom()

    print "Test 6:  Commands: limits(1.2, 1.8, 0.2, 0.8)"
    limits(1.2, 1.8, 0.2, 0.8)
    print "Limits changed to 1.2<x<1.8, 0.2<y<0.8."
    if quitnow(): return
    unzoom()

    ylimits(0.4, 0.6)
    print "Test 7:  Commands: ylimits(0.4, 0.6)"
    print "Limits changed to 1.2<x<1.8, 0.4<y<0.6."
    if quitnow(): return
    unzoom()

    limits()
    print "Test 8:  Commands: limits"
    print "Limits back to extreme values (1,0) to (2,1)."
    if quitnow(): return
    unzoom()

    fma()
    x = 10*pi*arange(200, dtype = Float)/199.0
    plg(sin(x), x)
    print "Test 9:  Commands: fma(); plg(sin(x), x)"
    print "where x = 10*pi*arange(200, dtype = Float)/199.0"
    print "Five cycles of a sine wave on a new frame."
    print "Before you continue, try clicking with the mouse buttons:"
    print "Left button zooms in, right button zooms out, middle no zoom"
    print "In each case, the point where you press the mouse button will"
    print "be translated to the point where you release the mouse button."
    print "To zoom one axis only, click over the tick marks on that axis."
    sts = quitnow()
    unzoom()
    if (sts): return

    pledit(marks=0, width=6, type="dash")
    print "Test 10  Commands: pledit(marks=0, width=6, type=\"dash\")"
    print "Marker A on sine curve disappears, curve becomes bold dashed."
    if quitnow(): return
    unzoom()

    fma()
    x = 2*pi*arange(200, dtype = Float)/199.0
    for i in range(1,7):
        r = 0.5*i - (5-0.5*i)*cos(x)
        s = "curve [" + `i` + "]"
        plg( r*sin(x), r*cos(x), marks=0, color=-4-i, legend = s)
    print "Test 11:  Commands: plg(r*sin(x), r*cos(x), color=-4-i)"
    print "A set of nested cardioids in the primary and secondary colors."
    if quitnow(): return
    unzoom()

    pltitle ( "Cardioids" )
    plt ("Colored Nested Cardioids", -2.0, -3.0, orient = 1, opaque = 1, \
    tosys = 1, legend = "Some text")
    plq()
    print "Test 12:  Commands: pltitle(\"Cardioids\"); \
    plt(\"Colored nested cardioids\",-2.,-3.,orient=1,opaque=1,tosys=1); plq()"
    print "Adds the title above the upper tick marks."
    print "Also prints legends for the six curves at the terminal (plq)."
    if quitnow(): return
    unzoom()

    print "Test 13:  Commands: pledit(color=\"fg\", type=0, marker=i)"
    for i in range(1,6): pledit(i, color="fg", type=0, marker=i)
    pledit(6, color="fg", type=0, marker='A')
    print "Changes the colors to foreground, types to no lines."
    print "Markers are point, plus, asterisk, O, X, A."
    if quitnow(): return
    unzoom()

    print "Test 14:  Commands: pledit(marks=0, type=i)"
    for i in range(1,6): pledit(i, marks=0, type=i)
    pledit(6, color="fg", type=1, width=4)
    print "Changes line types to solid, dash, dot, dashdot, dashdotdot."
    print "Outermost cardioid becomes a thick, solid line."
    if quitnow(): return
    unzoom()

    fma()
    limits()
    x = a3(-1, 1, 26)
    y = transpose (x)
    z = x+1j*y
    z = 5.*z/(5.+z*z)
    xx = z.real
    yy = z.imag
    print "Test 15:  Commands: plm(y, x)"
    print "Quadrilateral mesh -- round with bites out of its sides."
    plm (yy, xx)
    if quitnow(): return
    fma()
    unzoom()

    print "Test 16:  Commands: plmesh ( y, x ); plv(v, u, y, x)"
    plmesh(yy, xx)
    plv(x+.5, y-.5)
    print "Velocity vectors.  Try zooming and panning with mouse."
    if quitnow(): return
    fma()
    unzoom()

    print "Test 17:  Commands: plfc(.); plc(.); plm(y,x, boundary=1, type=2)"
    ireg = ones (xx.shape, Int)
    ireg [0, :] = 0
    ireg [:, 0] = 0
    plfc(mag(x+.5,y-.5),yy,xx,ireg,contours=8)
    plc (mag(x+.5,y-.5), marks=1)
    plm (boundary=1, type=2)
# print "Contours A-H, with mesh boundary dashed."
    print "Contours I-P, with mesh boundary dashed."
    if quitnow(): return
    fma()
    unzoom()

    print "Test 18:  Commands: plf(z);  plfc(.); plc(z,.)"
    z = mag(x+.5,y-.5)
    plf(z)
    fma()
    unzoom()
    if quitnow(): return
    plfc(z,yy,xx,ireg,contours=array([0.5, 1.0, 1.5]))
    plc(z, marks=0, type=2, color="bg", levs=[0.5, 1.0, 1.5])
    print "Filled mesh (color only) with three dashed contours overlayed."
    if quitnow(): return
    fma()
    unzoom()

    print "Test 19:  Commands: palette( \"<various>.gp\")"
    print "After each new palette is installed, hit <RETURN> for the next,"
    print "or q<RETURN> to begin test 20.  There are 6 palettes altogether."
    z = mag(x+.5,y-.5)
    plf(z)
    plc(z, marks=0, type=2, color="bg", levs=[0.5, 1.0, 1.5])
    if quitnow(): return
    fma ()
    plfc(z,yy,xx,ireg,contours=array([0.5, 1.0, 1.5]))
    plc(z, marks=0, type=2, color="bg", levs=[0.5, 1.0, 1.5])
    pal = ["heat.gp", "stern.gp", "rainbow.gp", "gray.gp", "yarg.gp", "earth.gp"]
    for i in range(6):
        palette (pal[i])
        print "Palette name: ", pal[i]
        if quitnow(): return

    palette("earth.gp")
    fma()
    unzoom()

    print "Test 20:  Commands: window, style=\"<various>.gs\""
    print "After each new style is installed, hit <RETURN> for the next,"
    print "or q<RETURN> to begin test 21.  There are 5 styles altogether."
    pal= ["vg.gs", "boxed.gs", "vgbox.gs", "nobox.gs", "work.gs"]
    for i in range(5):
        window (style=pal[i])
        plc (mag(x+.5,y-.5), marks=1)
        plm (boundary=1, type=2)
        print "Style name: ", pal[i]
        if quitnow(): return

    window(style="work.gs")
    fma()
    unzoom()

    print "Test 21:  Commands: pli(image)"
    x = a3 (-6,6,200)
    y = transpose (x)
    r = mag(y,x)
    theta = arctan2 (y, x)
    funky = cos(r)**2 * cos(3*theta)
    pli(funky)
    print "Cell array image (color only).  Three cycles in theta, r."
    if quitnow(): return
    fma()
    unzoom()

    print "Test 22:  Commands: pldj(x0, y0, x1, y1)"
    theta = a2(0, 2*pi, 18)
    x = cos(theta)
    y = sin(theta)
    pldj(x, y, transpose (x), transpose (y))
    pltitle("Seventeen Pointed Stars")
    limits(square = 1)
    print "All 17 pointed stars."
    if quitnow(): return
    limits(square = 0)
    fma()
    unzoom()

    print "Test 23:  Commands: plfp (z, y, x, n)"

# .. This duplicates the test in yorick
# .. I do not know of a way to apply a "table lookup" in python;
# .. Hence, the temporary array.
#
# .. n = [ 5, 10, 15 ]
# .. list = [ 1, 1, 3, 3, 2, 1, 3 ]
# .. n(list) = [ 5, 5, 15, 15, 10, 5, 15 ]

    n =  [3,4,5, 4, 5, 6, 5, 6, 7]
    n2 = [0,3,7,12,16,21,27,32,38]
    x0 = array ( [-2.,0.,2.]*3 )
    y0 = array ( [-2.]*3 + [0.]*3 + [2.]*3 )
    j = 1
    list = []
    for i in n:
        list = list + [j]*i
        j = j + 1
    lenList = len(list)

    nlist = arange(1,lenList+1)
    n2list = arange(1,lenList+1)
    phase = zeros ( (lenList), Float )
    theta = zeros ( (lenList), Float )
    x0List = zeros ( (lenList), Float )
    y0List = zeros ( (lenList), Float )

    for i in range(lenList):
        nlist[i] = n[list[i]-1]
        n2list[i] = n2[list[i]-1]
        x0List[i] = x0[list[i]-1]
        y0List[i] = y0[list[i]-1]

    phase = arange(1,lenList+1) - n2list
    theta = 2. * pi * phase / nlist
    x = cos(theta) + x0List
    y = sin(theta) + y0List

    plfp ( x0-y0, y, x, n, cmin=-4.5, cmax=4.5 )
    pltitle ( "Three rows of three polygons" )
    limits()
    print "Three rows of three polygons."
    if quitnow(): return
    fma()
    unzoom()

    print "Test 24:  Commands: plot histogram plh(...)"
    palette('earth.gp')
    data = array([7.58, 1.67, 5.28, 6.35, 4.08, 6.83, 2.24, 5.80, 5.93, 9.42,
                 2.37, 4.47, 4.91, 3.99, 5.14, 7.15, 5.69, 6.56, 1.24, 3.18])
    aminoacids = ['A', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L',
                  'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'V', 'W', 'Y']
    colors = 8 * arange(1,len(data)+1)
    plh (data, labels = aminoacids, color = colors)
    ylimits(0,10.0)
    pltitle ("Amino acid abundance (%) in SwissProt v. 36")
    if quitnow(): return
    fma()
    unzoom()

    print "Test 25:  Commands: plot text plt(...)"
    window(style="nobox.gs")
    plt("Courier",0,1,tosys=1,height=20,font=0)
    plt("Courier-Bold",0,2,tosys=1,height=20,font=1)
    plt("Courier-Oblique",0,3,tosys=1,height=20,font=2)
    plt("Courier-BoldOblique",0,4,tosys=1,height=20,font=3)
    plt("Times-Roman",0,5,tosys=1,height=20,font=4)
    plt("Times-Bold",0,6,tosys=1,height=20,font=5)
    plt("Times-Italic",0,7,tosys=1,height=20,font=6)
    plt("Times-BoldItalic",0,8,tosys=1,height=20,font=7)
    plt("Helvetica",0,9,tosys=1,height=20,font=8)
    plt("Helvetica-Bold",0,10,tosys=1,height=20,font=9)
    plt("Helvetica-Oblique",0,11,tosys=1,height=20,font=10)
    plt("Helvetica-BoldOblique",0,12,tosys=1,height=20,font=11)
    plt("Symbol",0,13,tosys=1,height=20,font=12)
    plt("Symbol",0,14,tosys=1,height=20,font=13)
    plt("Symbol",0,15,tosys=1,height=20,font=14)
    plt("Symbol",0,16,tosys=1,height=20,font=15)
    plt("NewCenturySchlbk-Roman",0,17,tosys=1,height=20,font=16)
    plt("NewCenturySchlbk-Bold",0,18,tosys=1,height=20,font=17)
    plt("NewCenturySchlbk-Italic",0,19,tosys=1,height=20,font=18)
    plt("NewCenturySchlbk-BoldItalic",0,20,tosys=1,height=20,font=19)
    limits(0,2,0,22)
    if quitnow(): return
    fma()
    window(style="work.gs")
    unzoom()

    print "Test 26:  Lissajous animation"
    print "First run without animation mode"
    print "Second run with animation mode"
    print "Press RETURN to continue"
    if quitnow(): return
    lissajous(0)
    print "Press RETURN to continue"
    if quitnow(): return
    lissajous(1)
    if quitnow(): return
    unzoom()

def quitnow(prompt=""):
    s = raw_input(prompt)
    if s == 'q': return 1
    return 0

def lissajous(animation):

#  DOCUMENT lissajous
#     runs the Yorick equivalent of an old graphics performance test
#     used to compare PLAN, ALMA, and Basis with LTSS TMDS graphics.
#   SEE ALSO: testg, grtest
#
#  Two figures with (x,y)= (cx,cy) + size*(cos(na*t), sin(nb*t+phase))
#  -- the centers describe semi-circular arcs of radius rc.

    import os
    t= 2*pi*arange(400, dtype = Float)/399.0
    na1= 1
    nb1= 5
    na2= 2
    nb2= 7
    rc1= 40.
    rc2= 160.
    size= 40.
    phase= theta= 0.

    n = 200;   #/* number of frames in animation */
    dtheta= pi/(n-1)
    dphase= 2*pi/(n-1)

    if animation == 1:
        animate(1)
    else:
        animate(0)

    fma()

    t0 = os.times()

    for i in range(n):
        cost= cos(theta)
        sint= sin(theta)
        x= rc1*cost+size*cos(na1*t)
        y= rc1*sint+size*sin(nb1*t+phase);
        plg( y, x)
        x= rc2*cost+size*cos(na2*t)
        y= rc2*sint+size*sin(nb2*t+phase);
        plg( y, x)
        fma()
        theta= theta + dtheta;
        phase= phase + dphase;

    t1 = os.times()
    print "Timing summary for Lissajous"
    print "Wall clock:", t1[4] - t0[4]
    print "User cpu:", t1[0] - t0[0]
    print "Sys cpu:", t1[1] - t0[1]

    if animation == 1:
        #/* turn off animation and pop up final frame again */
        animate(0)
        x= -rc1+size*cos(na1*t)
        y= size*sin(nb1*t);
        plg(y, x)
        x= -rc2+size*cos(na2*t)
        y= size*sin(nb2*t);
        plg(y, x)

# (nr X nc) array, each row an integer in the sequence [0, 1, ... ]
def a1(nr,nc):
    return reshape (array(concat1(nr,nc), Float), (nr,nc))

# (n-1) square array, with each row == spanz(lb,ub,n)
def a2(lb,ub,n):
    return reshape (array((n-1)*spanz(lb,ub,n), Float), (n-1,n-1))

# (n) square array, with each row == span(lb,ub,n)
def a3(lb,ub,n):
    return reshape (array(n*span(lb,ub,n), Float), (n,n))

# Half-hearted attempt at span(), which returns N equally-spaced
# values in the sequence [lb, ..., ub]
def span(lb,ub,n):
    if n < 2: raise ValueError, '3rd arg must be at least 2'
    b = lb
    a = (ub - lb)/(n - 1.0)
    #return a*arange(n) + b # if you want an array
    return map(lambda x,A=a,B=b: A*x + B, range(n)) # if you want a list

# Half-hearted attempt at span()(zcen), which returns N-1 "zone-centered"
# values in sequence (lb, ..., ub)
def spanz(lb,ub,n):
    if n < 3: raise ValueError, '3rd arg must be at least 3'
    c = 0.5*(ub - lb)/(n - 1.0)
    b = lb + c
    a = (ub - c - b)/(n - 2.0)
    return map(lambda x,A=a,B=b: A*x + B, range(n-1))

# magnitude or distance function
def mag(*args):
    r = 0
    for i in range(len(args)):
        r = r + args[i]*args[i]
    return sqrt(r)

def run():
    grtest()

def demo():
    grtest()

if __name__ == '__main__':
    run()