Regenerate all examples via update_examples.
[maxima.git] / share / orthopoly / plot_orthopoly.mac
blob201c50366d921aee8309183379d333c9f0091ed6
1 /* Generate A&S Figure 22.4 page 776 
2 */
5 orthopoly_returns_intervals : false$
7 foo : ['(ultraspherical(2,0.5,x)),
8 '(ultraspherical(3,0.5,x)),
9 '(ultraspherical(4,0.5,x)),
10 '(ultraspherical(5,0.5,x))]$
12 plot2d(foo,[x,-1,1])$
14 /* Generate A&S Figure 22.5 page 777 
18 foo : ['(ultraspherical(5, 0.2, x)),
19 '(ultraspherical(5, 0.4, x)),
20 '(ultraspherical(5, 0.6, x)),
21 '(ultraspherical(5, 0.8, x)),
22 '(ultraspherical(5, 1.0, x))]$
24 plot2d(foo, [x,-0.8,0.8])$
26 /* Generate A&S Figure 22.6 page 778
29 foo : ['(chebyshev_t(1,x)),
30 '(chebyshev_t(2,x)),
31 '(chebyshev_t(3,x)),
32 '(chebyshev_t(4,x)),
33 '(chebyshev_t(5,x))]$
36 plot2d(foo,[x,-1.0,1.0])$
38 /* Generate A&S Figure 22.7 page 779
42 foo : ['(chebyshev_u(1,x)),
43 '(chebyshev_u(2,x)),
44 '(chebyshev_u(3,x)),
45 '(chebyshev_u(4,x)),
46 '(chebyshev_u(5,x))]$
49 plot2d(foo,[x,-1.0,1.0])$