annotate liboctave/mx-ops @ 7019:4270ded9ddc6

[project @ 2007-10-13 01:42:20 by jwe]
author jwe
date Sat, 13 Oct 2007 01:42:21 +0000
parents fabb1be5fd84
children 43e3efb2cbc2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7019
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
1 # Copyright (C) 2003, 2004, 2006, 2007 John W. Eaton
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
2 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
3 # This file is part of Octave.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
4 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
5 # Octave is free software; you can redistribute it and/or modify it
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
6 # under the terms of the GNU General Public License as published by the
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
7 # Free Software Foundation; either version 3 of the License, or (at
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
8 # your option) any later version.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
9 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
10 # Octave is distributed in the hope that it will be useful, but WITHOUT
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
13 # for more details.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
14 #
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
15 # You should have received a copy of the GNU General Public License
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
16 # along with Octave; see the file COPYING. If not, see
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
17 # <http://www.gnu.org/licenses/>.
4270ded9ddc6 [project @ 2007-10-13 01:42:20 by jwe]
jwe
parents: 6119
diff changeset
18
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
19 # types
4953
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
20 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
21 # 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
22 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
23 # object-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
24 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
25 # S: scalar
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
26 # M: matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
27 # DM: diagonal matrix
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
28 # ND: N-d array
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
29 #
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
30 # 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
31 # parameter: octave_int8 is octave_int<int8_t>
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
32 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
33 x NONE NONE NONE NO 0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
34 b bool S NONE NO false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
35 bm boolMatrix ND boolMatrix.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
36 bnda boolNDArray ND boolNDArray.h YES false
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
37 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
38 cm ComplexMatrix M CMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
39 cnda ComplexNDArray ND CNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
40 cs Complex S oct-cmplx.h NO 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
41 dm DiagMatrix DM dDiagMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
42 m Matrix M dMatrix.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
43 nda NDArray ND dNDArray.h YES 0.0
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
44 s double S NONE NO 0.0
6119
fabb1be5fd84 [project @ 2006-10-28 00:13:58 by jwe]
jwe
parents: 5030
diff changeset
45 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
46 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
47 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
48 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
49 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
50 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
51 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
52 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
53 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
54 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
55 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
56 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
57 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
58 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
59 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
60 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
61 # ops
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
62 # 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
63 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
64 # op-type is one of
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
65 #
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
66 # B: binary ops, + - * /
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
67 # C: comparison ops, < <= == != >= >
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
68 # L: logical ops, & |
7a3a480e8645 [project @ 2004-09-01 21:10:28 by jwe]
jwe
parents: 4674
diff changeset
69 #
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
70 cdm cdm dm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
71 cdm dm cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
72 cm cs cdm B
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
73 cm cs dm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
74 cm cs m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
75 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
76 cm cdm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
77 cm cdm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
78 cm cdm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
79 cm cdm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
80 cm cm cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
81 cm cm dm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
82 cm cm m BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
83 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
84 cm cm s BCL real NONE boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
85 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
86 cm dm cs B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
87 cm dm cm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
88 cm m cs BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
89 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
90 cm m cdm B
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
91 cm m cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
92 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
93 cm s cdm B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
94 cm s cm BCL NONE real boolMatrix.h
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
95 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
96 m dm m B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
97 m dm s B
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
98 m m dm B
4544
74c92e375b54 [project @ 2003-10-23 23:48:29 by jwe]
jwe
parents:
diff changeset
99 m s dm B
4964
269c3d6c0569 [project @ 2004-09-04 01:16:28 by jwe]
jwe
parents: 4953
diff changeset
100 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
101 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
102 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
103 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
104 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
105 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
106 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
107 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
108 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
109 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
110 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
111 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
112 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
113 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
114 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
115 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
116 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
117 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
118 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
119 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
120 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
121 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
122 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
123 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
124 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
125 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
126 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
127 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
128 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
129 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
130 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
131 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
132 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
133 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
134 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
135 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
136 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
137 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
138 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
139 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
140 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
141 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
142 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
143 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
144 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
145 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
146 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
147 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
148 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
149 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
150 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
151 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
152 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
153 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
154 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
155 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
156 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
157 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
158 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
159 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
160 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
161 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
162 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
163 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
164 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
165 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
166 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
167 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
168 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
169 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
170 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
171 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
172 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
173 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
174 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
175 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
176 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
177 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
178 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
179 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
180 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
181 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
182 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
183 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
184 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
185 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
186 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
187 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
188 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
189 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
190 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
191 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
192 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
193 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
194 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
195 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
196 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
197 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
198 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
199 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
200 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
201 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
202 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
203 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
204 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
205 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
206 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
207 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
208 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
209 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
210 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
211 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
212 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
213 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
214 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
215 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
216 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
217 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
218 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
219 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
220 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
221 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
222 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
223 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
224 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
225 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
226 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
227 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
228 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
229 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
230 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
231 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
232 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
233 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
234 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
235 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
236 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
237 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
238 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
239 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
240 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
241 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
242 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
243 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
244 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
245 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
246 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
247 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
248 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
249 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
250 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
251 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
252 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
253 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
254 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
255 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
256 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
257 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
258 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
259 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
260 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
261 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
262 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
263 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
264 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
265 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
266 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
267 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
268 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
269 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
270 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
271 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
272 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
273 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
274 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
275 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
276 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
277 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
278 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
279 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
280 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
281 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
282 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
283 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
284 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
285 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
286 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
287 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
288 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
289 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
290 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
291 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
292 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
293 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
294 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
295 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
296 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
297 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
298 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
299 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
300 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
301 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
302 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
303 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
304 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
305 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
306 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
307 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
308 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
309 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
310 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
311 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
312 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
313 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
314 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
315 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
316 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
317 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
318 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
319 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
320 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
321 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
322 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
323 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
324 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
325 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
326 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
327 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
328 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
329 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
330 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
331 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
332 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
333 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
334 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
335 #
5030
160365410ad4 [project @ 2004-09-24 03:22:23 by jwe]
jwe
parents: 4964
diff changeset
336 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
337 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
338 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
339 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
340 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
341 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
342 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h