annotate liboctave/mx-ops @ 6658:db6d908e8a03 ss-2-9-12

[project @ 2007-05-23 04:38:07 by jwe]
author jwe
date Wed, 23 May 2007 04:38:08 +0000
parents fabb1be5fd84
children 4270ded9ddc6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
1 # types
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
2 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
3 # key typename object-type header fwd-decl-ok scalar-zero core-type
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
4 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
5 # object-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
6 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
7 # S: scalar
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
8 # M: matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
9 # DM: diagonal matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
10 # ND: N-d array
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
11 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
12 # core-type is only used for the octave_int types, and is the template
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
13 # parameter: octave_int8 is octave_int<int8_t>
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
14 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
15 x NONE NONE NONE NO 0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
16 b bool S NONE NO false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
17 bm boolMatrix ND boolMatrix.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
18 bnda boolNDArray ND boolNDArray.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
19 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
20 cm ComplexMatrix M CMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
21 cnda ComplexNDArray ND CNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
22 cs Complex S oct-cmplx.h NO 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
23 dm DiagMatrix DM dDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
24 m Matrix M dMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
25 nda NDArray ND dNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
26 s double S NONE NO 0.0
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
27 i8 octave_int8 S oct-inttypes.h YES octave_int8(0) int8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
28 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8(0) uint8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
29 i16 octave_int16 S oct-inttypes.h YES octave_int16(0) int16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
30 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16(0) uint16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
31 i32 octave_int32 S oct-inttypes.h YES octave_int32(0) int32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
32 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32(0) uint32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
33 i64 octave_int64 S oct-inttypes.h YES octave_int64(0) int64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
34 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64(0) uint64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
35 i8nda int8NDArray ND int8NDArray.h YES octave_int8(0) int8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
36 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8(0) uint8_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
37 i16nda int16NDArray ND int16NDArray.h YES octave_int16(0) int16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
38 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16(0) uint16_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
39 i32nda int32NDArray ND int32NDArray.h YES octave_int32(0) int32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
40 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32(0) uint32_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
41 i64nda int64NDArray ND int64NDArray.h YES octave_int64(0) int64_t
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
42 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64(0) uint64_t
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
43 # ops
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
44 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ...
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
45 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
46 # op-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
47 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
48 # B: binary ops, + - * /
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
49 # C: comparison ops, < <= == != >= >
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
50 # L: logical ops, & |
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
51 #
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
52 cdm cdm dm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
53 cdm dm cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
54 cm cs cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
55 cm cs dm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
56 cm cs m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
57 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
58 cm cdm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
59 cm cdm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
60 cm cdm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
61 cm cdm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
62 cm cm cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
63 cm cm dm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
64 cm cm m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
65 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
66 cm cm s BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
67 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
68 cm dm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
69 cm dm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
70 cm m cs BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
71 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
72 cm m cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
73 cm m cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
74 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
75 cm s cdm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
76 cm s cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
77 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
78 m dm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
79 m dm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
80 m m dm B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
81 m s dm B
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
82 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
83 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
84 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
85 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
86 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
87 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
88 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
89 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
90 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
91 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
92 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
93 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
94 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
95 i64nda s i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
96 i64nda i64nda s CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
97 ui64nda s ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
98 ui64nda ui64nda s CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
99 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
100 x nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
101 x i8 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
102 x nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
103 x ui8 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
104 x nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
105 x i16 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
106 x nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
107 x ui16 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
108 x nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
109 x i32 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
110 x nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
111 x ui32 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
112 x nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
113 x i64 nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
114 x nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
115 x ui64 nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
116 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
117 x nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
118 x i8nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
119 x nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
120 x ui8nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
121 x nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
122 x i16nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
123 x nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
124 x ui16nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
125 x nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
126 x i32nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
127 x nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
128 x ui32nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
129 x nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
130 x i64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
131 x nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
132 x ui64nda nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
133 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
134 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
135 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
136 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
137 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
138 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
139 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
140 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
141 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
142 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
143 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
144 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
145 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
146 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
147 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
148 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
149 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
150 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
151 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
152 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
153 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
154 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
155 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
156 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
157 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
158 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
159 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
160 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
161 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
162 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
163 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
164 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
165 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
166 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
167 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
168 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
169 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
170 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
171 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
172 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
173 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
174 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
175 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
176 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
177 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
178 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
179 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
180 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
181 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
182 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
183 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
184 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
185 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
186 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
187 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
188 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
189 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
190 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
191 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
192 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
193 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
194 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
195 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
196 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
197 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
198 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
199 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
200 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
201 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
202 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
203 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
204 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
205 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
206 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
207 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
208 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
209 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
210 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
211 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
212 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
213 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
214 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
215 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
216 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
217 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
218 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
219 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
220 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
221 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
222 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
223 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
224 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
225 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
226 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
227 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
228 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
229 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
230 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
231 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
232 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
233 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
234 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
235 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
236 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
237 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
238 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
239 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
240 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
241 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
242 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
243 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
244 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
245 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
246 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
247 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
248 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
249 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
250 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
251 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
252 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
253 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
254 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
255 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
256 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
257 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
258 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
259 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
260 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
261 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
262 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
263 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
264 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
265 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
266 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
267 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
268 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
269 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
270 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
271 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
272 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
273 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
274 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
275 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
276 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
277 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
278 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
279 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
280 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
281 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
282 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
283 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
284 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
285 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
286 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
287 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
288 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
289 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
290 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
291 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
292 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
293 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
294 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
295 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
296 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
297 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
298 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
299 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
300 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
301 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
302 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
303 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
304 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
305 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
306 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
307 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
308 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
309 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
310 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
311 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
312 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
313 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
314 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
315 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
316 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
317 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
318 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
319 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
320 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
321 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
322 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
323 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
324 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h