-
Notifications
You must be signed in to change notification settings - Fork 57
/
box_plot.html
808 lines (760 loc) · 22.7 KB
/
box_plot.html
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
<html>
<head>
<title>
BOX_PLOT - Integer Data Box Plots
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
BOX_PLOT <br> Integer Data Box Plots
</h1>
<hr>
<p>
<b>BOX_PLOT</b>
is a MATLAB program which
reads a file of integer
coordinates and associated colors, and makes a plot, placing a unit
box of the given color at each coordinate.
</p>
<h3 align = "center">
Usage:
</h3>
<p>
<blockquote>
<b>box_plot</b> ( <i>'input_filename'</i> )
</blockquote>
where
<ul>
<li>
<i>'input_filename'</i> contains xy point coordinates and rgb colors.
</li>
</ul>
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>BOX_PLOT</b> is available in
<a href = "../../m_src/box_plot/box_plot.html">a MATLAB version</a>.
</p>
<h3 align = "center">
Related Data and Programs:
</h3>
<p>
<a href = "../../f_src/bar_plot/bar_plot.html">
BAR_PLOT</a>,
a FORTRAN90 program which
reads a set of data from
a file and creates a bar plot.
</p>
<p>
<a href = "../../m_src/box_display/box_display.html">
BOX_DISPLAY</a>,
a MATLAB program which
displays a box plot, over integer pairs of data, of a function
defined by two formulas.
</p>
<p>
<a href = "../../m_src/cc_display/cc_display.html">
CC_DISPLAY</a>,
a MATLAB program which
displays the abscissas
used in various kinds of Clenshaw Curtis quadrature rules.
</p>
<p>
<a href = "../../m_src/circle_grid_display/circle_grid_display.html">
CIRCLE_GRID_DISPLAY</a>,
a MATLAB program which reads a matrix of integers, and draws a corresponding
grid of circles filled with color.
</p>
<p>
<a href = "../../m_src/gl_display/gl_display.html">
GL_DISPLAY</a>,
a MATLAB program which
displays the abscissas
used in various kinds of Gauss Legendre quadrature rules.
</p>
<p>
<a href = "../../m_src/gridlines/gridlines.html">
GRIDLINES</a>,
a MATLAB library which
gives the user more control over drawing gridlines on a graph
than the builtin "grid on" command.
</p>
<p>
<a href = "../../f_src/plot_points/plot_points.html">
PLOT_POINTS</a>,
a FORTRAN90 program which
reads a set of points from
a file and plots them into an Encapsulated PostScript file.
</p>
<p>
<a href = "../../m_src/prime_plot/prime_plot.html">
PRIME_PLOT</a>
a MATLAB program which
displays a box plot of the prime and composite numbers.
</p>
<p>
<a href = "../../m_src/xy_display/xy_display.html">
XY_DISPLAY</a>,
a MATLAB program which
reads a set of 2D points from
a file and plots them in a the MATLAB graphics window.
</p>
<p>
<a href = "../../m_src/xyf_display/xyf_display.html">
XYF_DISPLAY</a>,
a MATLAB program which
reads XYF information defining points and faces in 2D,
and displays an image in a MATLAB graphics window.
</p>
<p>
<a href = "../../m_src/xyl_display/xyl_display.html">
XYL_DISPLAY</a>,
a MATLAB program which
reads XYL information defining points and lines in 2D,
and displays an image in a MATLAB graphics window.
</p>
<p>
<a href = "../../m_src/xyz_display/xyz_display.html">
XYZ_DISPLAY</a>,
a MATLAB program which
reads a set of 3D points from
a file and plots them in a the MATLAB graphics window.
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "box_plot.m">box_plot.m</a>
the source code.
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<b>ADAPTIVE</b> looks at the adaptive modification of a sparse grid
rule in 2D.
<ul>
<li>
<a href = "adaptive_1.txt">adaptive_1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "adaptive_1.png">adaptive_1.png</a>,
</li>
<li>
<a href = "adaptive_2.txt">adaptive_2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "adaptive_2.png">adaptive_2.png</a>,
</li>
<li>
<a href = "adaptive_3.txt">adaptive_3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "adaptive_3.png">adaptive_3.png</a>,
</li>
<li>
<a href = "adaptive_4.txt">adaptive_4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "adaptive_4.png">adaptive_4.png</a>,
</li>
<li>
<a href = "adaptive_5.txt">adaptive_5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "adaptive_5.png">adaptive_5.png</a>,
</li>
<li>
<a href = "abc.png">abc.png</a>,
steps 1 through 3 in one plot.
</li>
<li>
<a href = "de.png">de.png</a>,
steps 4 through 5 in one plot.
</li>
<li>
<a href = "abcde.png">abcde.png</a>,
steps 1 through 5 in one plot.
</li>
</ul>
</p>
<p>
<b>ALPHA_1.0_1.0</b> prints some of the 64 pairs of values
on an 8 by 8 grid. Blue indicates "old" data, and red "new".
<ul>
<li>
<a href = "alpha_1.0_1.0.txt">alpha_1.0_1.0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "alpha_1.0_1.0.png">alpha_1.0_1.0.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>ALPHA_1.0_1.5</b> prints some of the 64 pairs of values
on an 8 by 8 grid. Blue indicates "old" data, and red "new".
<ul>
<li>
<a href = "alpha_1.0_1.5.txt">alpha_1.0_1.5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "alpha_1.0_1.5.png">alpha_1.0_1.5.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>ALPHA_1.0_2.0</b> prints some of the 64 pairs of values
on an 8 by 8 grid. Blue indicates "old" data, and red "new".
<ul>
<li>
<a href = "alpha_1.0_2.0.txt">alpha_1.0_2.0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "alpha_1.0_2.0.png">alpha_1.0_2.0.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>BOXES</b> suggests the monomials that are exactly integrated
by a 2D Clenshaw-Curtis sparse grid of levels 0 through 4. Monomials
added on this level are red, old ones are blue. A common 20x20 grid
is used for all the plots.
<ul>
<li>
<a href = "boxes_level0.txt">boxes_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "boxes_level0.png">boxes_level0.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "boxes_level1.txt">boxes_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "boxes_level1.png">boxes_level1.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "boxes_level2.txt">boxes_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "boxes_level2.png">boxes_level2.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "boxes_level3.txt">boxes_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "boxes_level3.png">boxes_level3.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "boxes_level4.txt">boxes_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "boxes_level4.png">boxes_level4.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>CC</b> looks at the monomials that are exactly integrated by
2D Clenshaw-Curtis sparse grids of levels 0 through 6, using a common
35x35 grid.
<ul>
<li>
<a href = "cc_level0.txt">cc_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level0.png">cc_level0.png</a>,
</li>
<li>
<a href = "cc_level1.txt">cc_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level1.png">cc_level1.png</a>,
</li>
<li>
<a href = "cc_level2.txt">cc_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level2.png">cc_level2.png</a>,
</li>
<li>
<a href = "cc_level3.txt">cc_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level3.png">cc_level3.png</a>,
</li>
<li>
<a href = "cc_level4.txt">cc_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level4.png">cc_level4.png</a>,
</li>
<li>
<a href = "cc_level5.txt">cc_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level5.png">cc_level5.png</a>,
</li>
<li>
<a href = "cc_level6.txt">cc_level6.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cc_level6.png">cc_level6.png</a>,
(note that the data in columns 0 and 1, and rows 0 and 1,
goes off the scale, to 65).
</li>
</ul>
</p>
<p>
<b>CCS</b> looks at the monomials that are exactly integrated by
2D Clenshaw-Curtis "Slow exponential" sparse grids of levels 0 through
6, using a common 35x35 grid. This is a variant of the Clenshaw Curtis
rule that tries to delay the exponential growth of the orders. Differences
only appear once level 4 has been reached.
<ul>
<li>
<a href = "ccs_level0.txt">ccs_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level0.png">ccs_level0.png</a>,
</li>
<li>
<a href = "ccs_level1.txt">ccs_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level1.png">ccs_level1.png</a>,
</li>
<li>
<a href = "ccs_level2.txt">ccs_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level2.png">ccs_level2.png</a>,
</li>
<li>
<a href = "ccs_level3.txt">ccs_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level3.png">ccs_level3.png</a>,
</li>
<li>
<a href = "ccs_level4.txt">ccs_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level4.png">ccs_level4.png</a>,
</li>
<li>
<a href = "ccs_level5.txt">ccs_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level5.png">ccs_level5.png</a>,
</li>
<li>
<a href = "ccs_level6.txt">ccs_level6.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "ccs_level6.png">ccs_level6.png</a>,
</li>
</ul>
</p>
<p>
<b>CGW</b> looks at the first eight rules in an anisotropic
sparse grid that has double the growth in X as in Y:
<ul>
<li>
<a href = "cgw_boxes_level0.txt">cgw_boxes_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level0.png">cgw_boxes_level0.png</a>,
</li>
<li>
<a href = "cgw_boxes_level1.txt">cgw_boxes_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level1.png">cgw_boxes_level1.png</a>,
</li>
<li>
<a href = "cgw_boxes_level2.txt">cgw_boxes_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level2.png">cgw_boxes_level2.png</a>,
</li>
<li>
<a href = "cgw_boxes_level3.txt">cgw_boxes_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level3.png">cgw_boxes_level3.png</a>,
</li>
<li>
<a href = "cgw_boxes_level4.txt">cgw_boxes_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level4.png">cgw_boxes_level4.png</a>,
</li>
<li>
<a href = "cgw_boxes_level5.txt">cgw_boxes_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level5.png">cgw_boxes_level5.png</a>,
</li>
<li>
<a href = "cgw_boxes_level6.txt">cgw_boxes_level6.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level6.png">cgw_boxes_level6.png</a>,
</li>
<li>
<a href = "cgw_boxes_level7.txt">cgw_boxes_level7.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level7.png">cgw_boxes_level7.png</a>,
</li>
<li>
<a href = "cgw_boxes_level8.txt">cgw_boxes_level8.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "cgw_boxes_level8.png">cgw_boxes_level8.png</a>,
</li>
</ul>
</p>
<p>
<b>CHECKERBOARD</b> is a set of 64 pairs of integers and colors
that correspond to a checkerboard.
<ul>
<li>
<a href = "checkerboard.txt">checkerboard.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "checkerboard.png">checkerboard.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>CLAY</b> is a set of pairs of integers that record the
basic method (1,1) in blue, some low order methods in green,
and secondary refinements in red.
<ul>
<li>
<a href = "clay.txt">clay.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "clay.png">clay.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>F</b> is a set of points that can make the letter F:
<ul>
<li>
<a href = "f.txt">f.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "f.png">f.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>GP</b> looks at the monomials that are exactly integrated by
2D Gauss-Patterson sparse grids of levels 0 through
5, using a common 35x35 grid.
<ul>
<li>
<a href = "gp_level0.txt">gp_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level0.png">gp_level0.png</a>,
</li>
<li>
<a href = "gp_level1.txt">gp_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level1.png">gp_level1.png</a>,
</li>
<li>
<a href = "gp_level2.txt">gp_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level2.png">gp_level2.png</a>,
</li>
<li>
<a href = "gp_level3.txt">gp_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level3.png">gp_level3.png</a>,
</li>
<li>
<a href = "gp_level4.txt">gp_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level4.png">gp_level4.png</a>,
</li>
<li>
<a href = "gp_level5.txt">gp_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gp_level5.png">gp_level5.png</a>,
</li>
</ul>
</p>
<p>
<b>GPS</b> looks at the monomials that are exactly integrated by
2D slow-growth Gauss-Patterson sparse grids of levels 0 through
5, using a common 35x35 grid.
<ul>
<li>
<a href = "gps_level0.txt">gps_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level0.png">gps_level0.png</a>,
</li>
<li>
<a href = "gps_level1.txt">gps_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level1.png">gps_level1.png</a>,
</li>
<li>
<a href = "gps_level2.txt">gps_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level2.png">gps_level2.png</a>,
</li>
<li>
<a href = "gps_level3.txt">gps_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level3.png">gps_level3.png</a>,
</li>
<li>
<a href = "gps_level4.txt">gps_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level4.png">gps_level4.png</a>,
</li>
<li>
<a href = "gps_level5.txt">gps_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "gps_level5.png">gps_level5.png</a>,
</li>
</ul>
</p>
<p>
<b>SM</b> symbolically displays the monomials that will be integrated
precisely by a Smolyak sparse grid rule of given level if the 1D factor
rules form a family of precisions at least 1, 3, 5, 7, 9, ...
<ul>
<li>
<a href = "sm_level0.txt">boxes_level0.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level0.png">sm_level0.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sm_level1.txt">sm_level1.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level1.png">sm_level1.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sm_level2.txt">sm_level2.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level2.png">sm_level2.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sm_level3.txt">sm_level3.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level3.png">sm_level3.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sm_level4.txt">sm_level4.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level4.png">sm_level4.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sm_level5.txt">sm_level5.txt</a>,
the coordinates and colors.
</li>
<li>
<a href = "sm_level5.png">sm_level5.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
<b>SPARSE</b> is a sequence of plots that suggest how a sparse grid
is put together in such a way as to capture all monomials up to a
specific total degree.
<ul>
<li>
<a href = "sparse1.txt">sparse1.txt</a>,
indicates the monomials to be captured.
</li>
<li>
<a href = "sparse1.png">sparse1.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse2.txt">sparse2.txt</a>,
shows how a product rule would capture the monomials (and more).
</li>
<li>
<a href = "sparse2.png">sparse2.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse3.txt">sparse3.txt</a>,
begins a sparse grid by adding Q(0x3).
</li>
<li>
<a href = "sparse3.png">sparse3.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse4.txt">sparse4.txt</a>,
continues a sparse grid by adding Q(2x2).
</li>
<li>
<a href = "sparse4.png">sparse4.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse5.txt">sparse5.txt</a>,
continues a sparse grid by subtracting Q(0x2).
</li>
<li>
<a href = "sparse5.png">sparse5.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse6.txt">sparse6.txt</a>,
continues a sparse grid by adding Q(2x1).
</li>
<li>
<a href = "sparse6.png">sparse6.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse7.txt">sparse7.txt</a>,
continues a sparse grid by subtracting Q(1x1).
</li>
<li>
<a href = "sparse7.png">sparse7.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse8.txt">sparse8.txt</a>,
continues a sparse grid by adding Q(3,0).
</li>
<li>
<a href = "sparse8.png">sparse8.png</a>,
a PNG image of a plot of the points.
</li>
<li>
<a href = "sparse9.txt">sparse9.txt</a>,
completes the sparse grid by subtracting Q(2x0).
</li>
<li>
<a href = "sparse9.png">sparse9.png</a>,
a PNG image of a plot of the points.
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last revised on 09 January 2014.
</i>
<!-- John Burkardt -->
</body>
<!-- Initial HTML skeleton created by HTMLINDEX. -->
</html>