annotate libinterp/operators/op-int-concat.cc @ 29989:b260322f6730

move xdiv, xnorm, and xpow inside octave namespace * xdiv.h, xdiv.cc (elem_xdiv): Rename from x_el_div. (elem_xdiv, xdiv): Move inside octave namespace. Change all uses. Provide deprecated wrapper functions to preserve old names. * xnorm.h, xnorm.cc (xnorm, xcolnorms, xrownorms, xfrobnorm): Move inside octave namespace. Change all uses. Provide deprecated wrapper functions to preserve old names. * xpow.h, xpow.cc (elem_xpow, xpow): Move inside octave namespace. Change all uses. Provide deprecated wrapper functions to preserve old names. * ov-base.cc (install_base_type_conversions): Move inside octave namespace. * ops.h: Don't declare install_ops function here. * ov-typeinfo.cc: Declare install_ops in source file instead of including ops.h. * mk-ops.sh: Move generated code inside octave namespace. * op-b-b.cc, op-b-bm.cc, op-b-sbm.cc, op-bm-b.cc, op-bm-bm.cc, op-bm-sbm.cc, op-cdm-cdm.cc, op-cell.cc, op-chm.cc, op-class.cc, op-cm-cm.cc, op-cm-cs.cc, op-cm-m.cc, op-cm-s.cc, op-cm-scm.cc, op-cm-sm.cc, op-cs-cm.cc, op-cs-cs.cc, op-cs-m.cc, op-cs-s.cc, op-cs-scm.cc, op-cs-sm.cc, op-dm-dm.cc, op-dm-scm.cc, op-dm-sm.cc, op-dm-template.cc, op-dms-template.cc, op-fcdm-fcdm.cc, op-fcm-fcm.cc, op-fcm-fcs.cc, op-fcm-fm.cc, op-fcm-fs.cc, op-fcn.cc, op-fcs-fcm.cc, op-fcs-fcs.cc, op-fcs-fm.cc, op-fcs-fs.cc, op-fdm-fdm.cc, op-fm-fcm.cc, op-fm-fcs.cc, op-fm-fm.cc, op-fm-fs.cc, op-fs-fcm.cc, op-fs-fcs.cc, op-fs-fm.cc, op-fs-fs.cc, op-i16-i16.cc, op-i32-i32.cc, op-i64-i64.cc, op-i8-i8.cc, op-int-concat.cc, op-m-cm.cc, op-m-cs.cc, op-m-m.cc, op-m-s.cc, op-m-scm.cc, op-m-sm.cc, op-mi.cc, op-pm-pm.cc, op-pm-scm.cc, op-pm-sm.cc, op-pm-template.cc, op-range.cc, op-s-cm.cc, op-s-cs.cc, op-s-m.cc, op-s-s.cc, op-s-scm.cc, op-s-sm.cc, op-sbm-b.cc, op-sbm-bm.cc, op-sbm-sbm.cc, op-scm-cm.cc, op-scm-cs.cc, op-scm-m.cc, op-scm-s.cc, op-scm-scm.cc, op-scm-sm.cc, op-sm-cm.cc, op-sm-cs.cc, op-sm-m.cc, op-sm-s.cc, op-sm-scm.cc, op-sm-sm.cc, op-str-m.cc, op-str-s.cc, op-str-str.cc, op-struct.cc, op-ui16-ui16.cc, op-ui32-ui32.cc, op-ui64-ui64.cc, op-ui8-ui8.cc: Move operator functions inside octave namespace.
author John W. Eaton <jwe@octave.org>
date Mon, 16 Aug 2021 21:38:22 -0400
parents 0a5b15007766
children 796f54d4ddbf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
29358
0a5b15007766 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27957
diff changeset
3 // Copyright (C) 2004-2021 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
25
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21301
diff changeset
26 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21200
diff changeset
27 # include "config.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
28 #endif
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
29
21100
e39e05d90788 Switch gripe_XXX to either err_XXX or warn_XXX naming scheme.
Rik <rik@octave.org>
parents: 20940
diff changeset
30 #include "errwarn.h"
20940
48b2ad5ee801 maint: Rename oct-obj.[cc|h] to ovl.[cc|h] for clarity.
Rik <rik@octave.org>
parents: 19697
diff changeset
31 #include "ovl.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
32 #include "ov.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
33 #include "ov-int8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
34 #include "ov-int16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
35 #include "ov-int32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
36 #include "ov-int64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
37 #include "ov-uint8.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
38 #include "ov-uint16.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
39 #include "ov-uint32.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
40 #include "ov-uint64.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
41 #include "ov-range.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
42 #include "ov-bool.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
43 #include "ov-bool-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
44 #include "ov-scalar.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
45 #include "ov-float.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
46 #include "ov-re-mat.h"
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
47 #include "ov-flt-re-mat.h"
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
48 #include "ov-str-mat.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
49 #include "ov-typeinfo.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
50 #include "op-int.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
51 #include "ops.h"
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
52
29989
b260322f6730 move xdiv, xnorm, and xpow inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
53 OCTAVE_NAMESPACE_BEGIN
b260322f6730 move xdiv, xnorm, and xpow inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
54
27956
2310164737b3 fix many spelling errors (bug #57613)
John W. Eaton <jwe@octave.org>
parents: 26376
diff changeset
55 // Concatenation of mixed integer types:
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
56
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
57 OCTAVE_CONCAT_FN2 (int8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
58 OCTAVE_CONCAT_FN2 (int8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
59 OCTAVE_CONCAT_FN2 (int8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
60
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
61 OCTAVE_CONCAT_FN2 (int8, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
62 OCTAVE_CONCAT_FN2 (int8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
63 OCTAVE_CONCAT_FN2 (int8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
64 OCTAVE_CONCAT_FN2 (int8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
65
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
66 OCTAVE_CONCAT_FN2 (int16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
67 OCTAVE_CONCAT_FN2 (int16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
68 OCTAVE_CONCAT_FN2 (int16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
69
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
70 OCTAVE_CONCAT_FN2 (int16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
71 OCTAVE_CONCAT_FN2 (int16, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
72 OCTAVE_CONCAT_FN2 (int16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
73 OCTAVE_CONCAT_FN2 (int16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
74
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
75 OCTAVE_CONCAT_FN2 (int32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
76 OCTAVE_CONCAT_FN2 (int32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
77 OCTAVE_CONCAT_FN2 (int32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
78
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
79 OCTAVE_CONCAT_FN2 (int32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
80 OCTAVE_CONCAT_FN2 (int32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
81 OCTAVE_CONCAT_FN2 (int32, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
82 OCTAVE_CONCAT_FN2 (int32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
83
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
84 OCTAVE_CONCAT_FN2 (int64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
85 OCTAVE_CONCAT_FN2 (int64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
86 OCTAVE_CONCAT_FN2 (int64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
87
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
88 OCTAVE_CONCAT_FN2 (int64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
89 OCTAVE_CONCAT_FN2 (int64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
90 OCTAVE_CONCAT_FN2 (int64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
91 OCTAVE_CONCAT_FN2 (int64, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
92
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
93 OCTAVE_CONCAT_FN2 (uint8, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
94 OCTAVE_CONCAT_FN2 (uint8, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
95 OCTAVE_CONCAT_FN2 (uint8, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
96 OCTAVE_CONCAT_FN2 (uint8, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
97
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
98 OCTAVE_CONCAT_FN2 (uint8, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
99 OCTAVE_CONCAT_FN2 (uint8, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
100 OCTAVE_CONCAT_FN2 (uint8, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
101
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
102 OCTAVE_CONCAT_FN2 (uint16, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
103 OCTAVE_CONCAT_FN2 (uint16, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
104 OCTAVE_CONCAT_FN2 (uint16, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
105 OCTAVE_CONCAT_FN2 (uint16, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
106
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
107 OCTAVE_CONCAT_FN2 (uint16, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
108 OCTAVE_CONCAT_FN2 (uint16, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
109 OCTAVE_CONCAT_FN2 (uint16, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
110
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
111 OCTAVE_CONCAT_FN2 (uint32, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
112 OCTAVE_CONCAT_FN2 (uint32, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
113 OCTAVE_CONCAT_FN2 (uint32, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
114 OCTAVE_CONCAT_FN2 (uint32, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
115
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
116 OCTAVE_CONCAT_FN2 (uint32, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
117 OCTAVE_CONCAT_FN2 (uint32, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
118 OCTAVE_CONCAT_FN2 (uint32, uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
119
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
120 OCTAVE_CONCAT_FN2 (uint64, int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
121 OCTAVE_CONCAT_FN2 (uint64, int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
122 OCTAVE_CONCAT_FN2 (uint64, int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
123 OCTAVE_CONCAT_FN2 (uint64, int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
124
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
125 OCTAVE_CONCAT_FN2 (uint64, uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
126 OCTAVE_CONCAT_FN2 (uint64, uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
127 OCTAVE_CONCAT_FN2 (uint64, uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
128
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
129 OCTAVE_INT_DOUBLE_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
130 OCTAVE_INT_DOUBLE_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
131 OCTAVE_INT_DOUBLE_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
132 OCTAVE_INT_DOUBLE_CONCAT_FN (int64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
133
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
134 OCTAVE_INT_DOUBLE_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
135 OCTAVE_INT_DOUBLE_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
136 OCTAVE_INT_DOUBLE_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
137 OCTAVE_INT_DOUBLE_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
138
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
139 OCTAVE_DOUBLE_INT_CONCAT_FN (int8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
140 OCTAVE_DOUBLE_INT_CONCAT_FN (int16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
141 OCTAVE_DOUBLE_INT_CONCAT_FN (int32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
142 OCTAVE_DOUBLE_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
143
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
144 OCTAVE_DOUBLE_INT_CONCAT_FN (uint8)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
145 OCTAVE_DOUBLE_INT_CONCAT_FN (uint16)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
146 OCTAVE_DOUBLE_INT_CONCAT_FN (uint32)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
147 OCTAVE_DOUBLE_INT_CONCAT_FN (uint64)
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
148
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
149 OCTAVE_INT_FLOAT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
150 OCTAVE_INT_FLOAT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
151 OCTAVE_INT_FLOAT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
152 OCTAVE_INT_FLOAT_CONCAT_FN (int64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
153
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
154 OCTAVE_INT_FLOAT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
155 OCTAVE_INT_FLOAT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
156 OCTAVE_INT_FLOAT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
157 OCTAVE_INT_FLOAT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
158
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
159 OCTAVE_FLOAT_INT_CONCAT_FN (int8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
160 OCTAVE_FLOAT_INT_CONCAT_FN (int16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
161 OCTAVE_FLOAT_INT_CONCAT_FN (int32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
162 OCTAVE_FLOAT_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
163
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
164 OCTAVE_FLOAT_INT_CONCAT_FN (uint8)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
165 OCTAVE_FLOAT_INT_CONCAT_FN (uint16)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
166 OCTAVE_FLOAT_INT_CONCAT_FN (uint32)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
167 OCTAVE_FLOAT_INT_CONCAT_FN (uint64)
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
168
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
169 OCTAVE_INT_CHAR_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
170 OCTAVE_INT_CHAR_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
171 OCTAVE_INT_CHAR_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
172 OCTAVE_INT_CHAR_CONCAT_FN (int64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
173
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
174 OCTAVE_INT_CHAR_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
175 OCTAVE_INT_CHAR_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
176 OCTAVE_INT_CHAR_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
177 OCTAVE_INT_CHAR_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
178
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
179 OCTAVE_CHAR_INT_CONCAT_FN (int8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
180 OCTAVE_CHAR_INT_CONCAT_FN (int16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
181 OCTAVE_CHAR_INT_CONCAT_FN (int32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
182 OCTAVE_CHAR_INT_CONCAT_FN (int64)
11586
12df7854fa7c strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents: 11523
diff changeset
183
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
184 OCTAVE_CHAR_INT_CONCAT_FN (uint8)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
185 OCTAVE_CHAR_INT_CONCAT_FN (uint16)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
186 OCTAVE_CHAR_INT_CONCAT_FN (uint32)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
187 OCTAVE_CHAR_INT_CONCAT_FN (uint64)
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
188
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
189 void
24540
46440078d73b don't use singleton for octave_value_typeinfo
John W. Eaton <jwe@octave.org>
parents: 24534
diff changeset
190 install_int_concat_ops (octave::type_info& ti)
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
191 {
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
192 OCTAVE_INSTALL_CONCAT_FN2 (int8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
193 OCTAVE_INSTALL_CONCAT_FN2 (int8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
194 OCTAVE_INSTALL_CONCAT_FN2 (int8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
195
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
196 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
197 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
198 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
199 OCTAVE_INSTALL_CONCAT_FN2 (int8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
200
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
201 OCTAVE_INSTALL_CONCAT_FN2 (int16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
202 OCTAVE_INSTALL_CONCAT_FN2 (int16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
203 OCTAVE_INSTALL_CONCAT_FN2 (int16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
204
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
205 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
206 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
207 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
208 OCTAVE_INSTALL_CONCAT_FN2 (int16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
209
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
210 OCTAVE_INSTALL_CONCAT_FN2 (int32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
211 OCTAVE_INSTALL_CONCAT_FN2 (int32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
212 OCTAVE_INSTALL_CONCAT_FN2 (int32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
213
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
214 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
215 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
216 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
217 OCTAVE_INSTALL_CONCAT_FN2 (int32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
218
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
219 OCTAVE_INSTALL_CONCAT_FN2 (int64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
220 OCTAVE_INSTALL_CONCAT_FN2 (int64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
221 OCTAVE_INSTALL_CONCAT_FN2 (int64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
222
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
223 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
224 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
225 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
226 OCTAVE_INSTALL_CONCAT_FN2 (int64, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
227
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
228 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
229 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
230 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
231 OCTAVE_INSTALL_CONCAT_FN2 (uint8, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
232
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
233 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
234 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
235 OCTAVE_INSTALL_CONCAT_FN2 (uint8, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
236
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
237 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
238 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
239 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
240 OCTAVE_INSTALL_CONCAT_FN2 (uint16, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
241
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
242 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
243 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
244 OCTAVE_INSTALL_CONCAT_FN2 (uint16, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
245
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
246 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
247 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
248 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
249 OCTAVE_INSTALL_CONCAT_FN2 (uint32, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
250
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
251 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
252 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
253 OCTAVE_INSTALL_CONCAT_FN2 (uint32, uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
254
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
255 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
256 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
257 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
258 OCTAVE_INSTALL_CONCAT_FN2 (uint64, int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
259
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
260 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
261 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
262 OCTAVE_INSTALL_CONCAT_FN2 (uint64, uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
263
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
264 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
265 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
266 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
267 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
268
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
269 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
270 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
271 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
272 OCTAVE_INSTALL_INT_DOUBLE_CONCAT_FN (uint64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
273
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
274 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
275 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
276 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
277 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (int64);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
278
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
279 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint8);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
280 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint16);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
281 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint32);
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
282 OCTAVE_INSTALL_DOUBLE_INT_CONCAT_FN (uint64);
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
283
7789
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
284 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
285 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
286 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
287 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
288
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
289 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
290 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
291 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
292 OCTAVE_INSTALL_INT_FLOAT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
293
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
294 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
295 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
296 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
297 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (int64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
298
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
299 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint8);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
300 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint16);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
301 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint32);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
302 OCTAVE_INSTALL_FLOAT_INT_CONCAT_FN (uint64);
82be108cc558 First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents: 7017
diff changeset
303
5533
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
304 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
305 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
306 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
307 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
308
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
309 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
310 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
311 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
312 OCTAVE_INSTALL_INT_CHAR_CONCAT_FN (uint64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
313
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
314 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
315 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
316 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
317 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (int64);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
318
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
319 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint8);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
320 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint16);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
321 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint32);
667ad2becb63 [project @ 2005-11-10 21:40:48 by jwe]
jwe
parents: 5307
diff changeset
322 OCTAVE_INSTALL_CHAR_INT_CONCAT_FN (uint64);
5075
b6a9f78f60e9 [project @ 2004-11-10 03:13:26 by jwe]
jwe
parents:
diff changeset
323 }
29989
b260322f6730 move xdiv, xnorm, and xpow inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
324
b260322f6730 move xdiv, xnorm, and xpow inside octave namespace
John W. Eaton <jwe@octave.org>
parents: 29358
diff changeset
325 OCTAVE_NAMESPACE_END