annotate src/OPERATORS/op-int-conv.cc @ 5164:57077d0ddc8e

[project @ 2005-02-25 19:55:24 by jwe]
author jwe
date Fri, 25 Feb 2005 19:55:28 +0000
parents 3361e0846469
children 4c8a2e4e0717
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
1 /*
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
2
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
3 Copyright (C) 2004 John W. Eaton
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
4
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
6
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
10 later version.
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
11
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
15 for more details.
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
16
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, write to the Free
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
20
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
21 */
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
22
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
23 #ifdef HAVE_CONFIG_H
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
24 #include <config.h>
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
25 #endif
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
26
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
27 #include "gripes.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
28 #include "oct-obj.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
29 #include "ov.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
30 #include "ov-int8.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
31 #include "ov-int16.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
32 #include "ov-int32.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
33 #include "ov-int64.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
34 #include "ov-uint8.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
35 #include "ov-uint16.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
36 #include "ov-uint32.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
37 #include "ov-uint64.h"
4907
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
38 #include "ov-range.h"
5002
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
39 #include "ov-bool.h"
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
40 #include "ov-bool-mat.h"
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
41 #include "ov-scalar.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
42 #include "ov-re-mat.h"
5032
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
43 #include "ov-str-mat.h"
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
44 #include "ov-typeinfo.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
45 #include "ops.h"
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
46
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
47 // conversion ops
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
48
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
49 DEFCONVFN (scalar_to_int8, scalar, int8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
50 DEFCONVFN (scalar_to_int16, scalar, int16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
51 DEFCONVFN (scalar_to_int32, scalar, int32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
52 DEFCONVFN (scalar_to_int64, scalar, int64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
53
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
54 DEFCONVFN (scalar_to_uint8, scalar, uint8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
55 DEFCONVFN (scalar_to_uint16, scalar, uint16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
56 DEFCONVFN (scalar_to_uint32, scalar, uint32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
57 DEFCONVFN (scalar_to_uint64, scalar, uint64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
58
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
59 DEFCONVFN (matrix_to_int8, matrix, int8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
60 DEFCONVFN (matrix_to_int16, matrix, int16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
61 DEFCONVFN (matrix_to_int32, matrix, int32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
62 DEFCONVFN (matrix_to_int64, matrix, int64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
63
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
64 DEFCONVFN (matrix_to_uint8, matrix, uint8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
65 DEFCONVFN (matrix_to_uint16, matrix, uint16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
66 DEFCONVFN (matrix_to_uint32, matrix, uint32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
67 DEFCONVFN (matrix_to_uint64, matrix, uint64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
68
5002
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
69 DEFCONVFN (bool_to_int8, bool, int8)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
70 DEFCONVFN (bool_to_int16, bool, int16)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
71 DEFCONVFN (bool_to_int32, bool, int32)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
72 DEFCONVFN (bool_to_int64, bool, int64)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
73
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
74 DEFCONVFN (bool_to_uint8, bool, uint8)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
75 DEFCONVFN (bool_to_uint16, bool, uint16)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
76 DEFCONVFN (bool_to_uint32, bool, uint32)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
77 DEFCONVFN (bool_to_uint64, bool, uint64)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
78
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
79 DEFCONVFN (bool_matrix_to_int8, bool_matrix, int8)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
80 DEFCONVFN (bool_matrix_to_int16, bool_matrix, int16)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
81 DEFCONVFN (bool_matrix_to_int32, bool_matrix, int32)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
82 DEFCONVFN (bool_matrix_to_int64, bool_matrix, int64)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
83
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
84 DEFCONVFN (bool_matrix_to_uint8, bool_matrix, uint8)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
85 DEFCONVFN (bool_matrix_to_uint16, bool_matrix, uint16)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
86 DEFCONVFN (bool_matrix_to_uint32, bool_matrix, uint32)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
87 DEFCONVFN (bool_matrix_to_uint64, bool_matrix, uint64)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
88
5032
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
89 DEFSTRINTCONVFN (char_matrix_str_to_int8, int8)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
90 DEFSTRINTCONVFN (char_matrix_str_to_int16, int16)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
91 DEFSTRINTCONVFN (char_matrix_str_to_int32, int32)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
92 DEFSTRINTCONVFN (char_matrix_str_to_int64, int64)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
93
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
94 DEFSTRINTCONVFN (char_matrix_str_to_uint8, uint8)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
95 DEFSTRINTCONVFN (char_matrix_str_to_uint16, uint16)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
96 DEFSTRINTCONVFN (char_matrix_str_to_uint32, uint32)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
97 DEFSTRINTCONVFN (char_matrix_str_to_uint64, uint64)
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
98
4907
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
99 DEFCONVFN (range_to_int8, range, int8)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
100 DEFCONVFN (range_to_int16, range, int16)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
101 DEFCONVFN (range_to_int32, range, int32)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
102 DEFCONVFN (range_to_int64, range, int64)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
103
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
104 DEFCONVFN (range_to_uint8, range, uint8)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
105 DEFCONVFN (range_to_uint16, range, uint16)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
106 DEFCONVFN (range_to_uint32, range, uint32)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
107 DEFCONVFN (range_to_uint64, range, uint64)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
108
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
109 #define INT_CONV_FUNCTIONS(tfrom) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
110 DEFCONVFN2 (tfrom ## _scalar_to_int8, tfrom, scalar, int8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
111 DEFCONVFN2 (tfrom ## _scalar_to_int16, tfrom, scalar, int16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
112 DEFCONVFN2 (tfrom ## _scalar_to_int32, tfrom, scalar, int32) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
113 DEFCONVFN2 (tfrom ## _scalar_to_int64, tfrom, scalar, int64) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
114 \
4952
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
115 DEFCONVFN2 (tfrom ## _scalar_to_uint8, tfrom, scalar, uint8) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
116 DEFCONVFN2 (tfrom ## _scalar_to_uint16, tfrom, scalar, uint16) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
117 DEFCONVFN2 (tfrom ## _scalar_to_uint32, tfrom, scalar, uint32) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
118 DEFCONVFN2 (tfrom ## _scalar_to_uint64, tfrom, scalar, uint64) \
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
119 \
4952
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
120 DEFCONVFN2 (tfrom ## _matrix_to_int8, tfrom, matrix, int8) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
121 DEFCONVFN2 (tfrom ## _matrix_to_int16, tfrom, matrix, int16) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
122 DEFCONVFN2 (tfrom ## _matrix_to_int32, tfrom, matrix, int32) \
bfd57b466752 [project @ 2004-09-01 00:49:05 by jwe]
jwe
parents: 4907
diff changeset
123 DEFCONVFN2 (tfrom ## _matrix_to_int64, tfrom, matrix, int64) \
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
124 \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
125 DEFCONVFN2 (tfrom ## _matrix_to_uint8, tfrom, matrix, uint8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
126 DEFCONVFN2 (tfrom ## _matrix_to_uint16, tfrom, matrix, uint16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
127 DEFCONVFN2 (tfrom ## _matrix_to_uint32, tfrom, matrix, uint32) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
128 DEFCONVFN2 (tfrom ## _matrix_to_uint64, tfrom, matrix, uint64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
129
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
130 INT_CONV_FUNCTIONS (int8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
131 INT_CONV_FUNCTIONS (int16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
132 INT_CONV_FUNCTIONS (int32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
133 INT_CONV_FUNCTIONS (int64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
134
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
135 INT_CONV_FUNCTIONS (uint8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
136 INT_CONV_FUNCTIONS (uint16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
137 INT_CONV_FUNCTIONS (uint32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
138 INT_CONV_FUNCTIONS (uint64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
139
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
140 #define INSTALL_INT_CONV_FUNCTIONS(tfrom) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
141 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int8_matrix, tfrom ## _scalar_to_int8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
142 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int16_matrix, tfrom ## _scalar_to_int16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
143 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int32_matrix, tfrom ## _scalar_to_int32) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
144 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_int64_matrix, tfrom ## _scalar_to_int64) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
145 \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
146 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint8_matrix, tfrom ## _scalar_to_uint8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
147 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint16_matrix, tfrom ## _scalar_to_uint16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
148 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint32_matrix, tfrom ## _scalar_to_uint32) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
149 INSTALL_CONVOP (octave_ ## tfrom ## _scalar, octave_uint64_matrix, tfrom ## _scalar_to_uint64) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
150 \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
151 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int8_matrix, tfrom ## _matrix_to_int8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
152 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int16_matrix, tfrom ## _matrix_to_int16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
153 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int32_matrix, tfrom ## _matrix_to_int32) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
154 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_int64_matrix, tfrom ## _matrix_to_int64) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
155 \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
156 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint8_matrix, tfrom ## _matrix_to_uint8) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
157 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint16_matrix, tfrom ## _matrix_to_uint16) \
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
158 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint32_matrix, tfrom ## _matrix_to_uint32) \
4907
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
159 INSTALL_CONVOP (octave_ ## tfrom ## _matrix, octave_uint64_matrix, tfrom ## _matrix_to_uint64)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
160
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
161 #define INSTALL_CONVOPS(tfrom) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
162 INSTALL_CONVOP (octave_ ## tfrom, octave_int8_matrix, tfrom ## _to_int8) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
163 INSTALL_CONVOP (octave_ ## tfrom, octave_int16_matrix, tfrom ## _to_int16) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
164 INSTALL_CONVOP (octave_ ## tfrom, octave_int32_matrix, tfrom ## _to_int32) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
165 INSTALL_CONVOP (octave_ ## tfrom, octave_int64_matrix, tfrom ## _to_int64) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
166 \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
167 INSTALL_CONVOP (octave_ ## tfrom, octave_uint8_matrix, tfrom ## _to_uint8) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
168 INSTALL_CONVOP (octave_ ## tfrom, octave_uint16_matrix, tfrom ## _to_uint16) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
169 INSTALL_CONVOP (octave_ ## tfrom, octave_uint32_matrix, tfrom ## _to_uint32) \
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
170 INSTALL_CONVOP (octave_ ## tfrom, octave_uint64_matrix, tfrom ## _to_uint64)
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
171
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
172 void
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
173 install_int_conv_ops (void)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
174 {
4907
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
175 INSTALL_CONVOPS (scalar)
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
176 INSTALL_CONVOPS (matrix)
5002
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
177 INSTALL_CONVOPS (bool)
d894b803ccb5 [project @ 2004-09-16 01:11:39 by jwe]
jwe
parents: 4952
diff changeset
178 INSTALL_CONVOPS (bool_matrix)
4907
102f199a9a9e [project @ 2004-06-25 22:10:07 by jwe]
jwe
parents: 4901
diff changeset
179 INSTALL_CONVOPS (range)
5032
3361e0846469 [project @ 2004-09-24 03:56:41 by jwe]
jwe
parents: 5002
diff changeset
180 INSTALL_CONVOPS (char_matrix_str)
4901
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
181
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
182 INSTALL_INT_CONV_FUNCTIONS (int8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
183 INSTALL_INT_CONV_FUNCTIONS (int16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
184 INSTALL_INT_CONV_FUNCTIONS (int32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
185 INSTALL_INT_CONV_FUNCTIONS (int64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
186
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
187 INSTALL_INT_CONV_FUNCTIONS (uint8)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
188 INSTALL_INT_CONV_FUNCTIONS (uint16)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
189 INSTALL_INT_CONV_FUNCTIONS (uint32)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
190 INSTALL_INT_CONV_FUNCTIONS (uint64)
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
191 }
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
192
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
193 /*
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
194 ;;; Local Variables: ***
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
195 ;;; mode: C++ ***
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
196 ;;; End: ***
35bfb4e0b96b [project @ 2004-06-14 18:33:02 by jwe]
jwe
parents:
diff changeset
197 */