1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/*
* Copyright (c) 2009 Samit Basu
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "Operators.hpp"
#include "Array.hpp"
#include "SparseMatrix.hpp"
struct OpBitAnd {
template <typename T>
static inline T func(T A, T B) {return T(uint32(A) & uint32(B));}
template <typename T>
static inline void func(const T& Ar, const T& Ai,
const T& Br, const T& Bi,
T& cr, T& ci) {
cr = T(uint32(Ar) & uint32(Br));
ci = T(uint32(Ai) & uint32(Bi));
}
};
struct OpBitOr {
template <typename T>
static inline T func(T A, T B) {return T(uint32(A) | uint32(B));}
template <typename T>
static inline void func(const T& Ar, const T& Ai,
const T& Br, const T& Bi,
T& cr, T& ci) {
cr = T(uint32(Ar) | uint32(Br));
ci = T(uint32(Ai) | uint32(Bi));
}
};
struct OpBitXor {
template <typename T>
static inline T func(T A, T B) {return T(uint32(A) ^ uint32(B));}
template <typename T>
static inline void func(const T& Ar, const T& Ai,
const T& Br, const T& Bi,
T& cr, T& ci) {
cr = T(uint32(Ar) ^ uint32(Br));
ci = T(uint32(Ai) ^ uint32(Bi));
}
};
struct OpBitCmp {
template <typename T>
static inline T func(T A) {return T(~A);}
template <typename T>
static inline void func(const T &Ar, const T &Ai, T& Cr, T& Ci) {
Cr = T(~uint32(Ar));
Ci = T(~uint32(Ai));
}
};
//!
//@Module BITAND Bitwise Boolean And Operation
//@@Section BINARY
//@@Usage
//Performs a bitwise binary and operation on the two arguments and
//returns the result. The syntax for its use is
//@[
// y = bitand(a,b)
//@]
//where @|a| and @|b| are multi-dimensional unsigned integer arrays.
//The and operation is performed using 32 bit unsigned intermediates. Note that if a
//or b is a scalar, then each element of the other array is and'ed with
// that scalar. Otherwise the two arrays must match in size.
//@@Example
//@<
//bitand(uint16([1,16,255]),uint16([3,17,128]))
//bitand(uint16([1,16,255]),uint16(3))
//@>
//@@Tests
//@{ test_bitand1.m
//function test_val = test_bitand1
// test_val = all(bitand([1,5,42],3) == [1 1 2]);
//@}
//@@Signature
//function bitand BitandFunction
//inputs a b
//outputs y
//!
ArrayVector BitandFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 2)
throw Exception("bitand requires at least two arguments");
return ArrayVector(DotOp<OpBitAnd>(arg[0],arg[1]));
}
//!
//@Module BITOR Bitwise Boolean Or Operation
//@@Section BINARY
//@@Usage
//Performs a bitwise binary or operation on the two arguments and
//returns the result. The syntax for its use is
//@[
// y = bitor(a,b)
//@]
//where @|a| and @|b| are multi-dimensional unsigned integer arrays.
//The and operation is performed using 32 bit unsigned intermediates. Note that if a
//or b is a scalar, then each element of the other array is or'ed with
//that scalar. Otherwise the two arrays must match in size.
//@@Example
//@<
//bitand(uint16([1,16,255]),uint16([3,17,128]))
//bitand(uint16([1,16,255]),uint16(3))
//@>
//@@Tests
//@{ test_bitor1.m
//function test_val = test_bitor1
// test_val = all(bitor([1,5,42],3) == [3 7 43]);
//@}
//@@Signature
//function bitor BitorFunction
//inputs a b
//outputs y
//!
ArrayVector BitorFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 2)
throw Exception("bitor requires at least two arguments");
return ArrayVector(DotOp<OpBitOr>(arg[0],arg[1]));
}
//!
//@Module BITXOR Bitwise Boolean Exclusive-Or (XOR) Operation
//@@Section BINARY
//@@Usage
//Performs a bitwise binary xor operation on the two arguments and
//returns the result. The syntax for its use is
//@[
// y = bitxor(a,b)
//@]
//where @|a| and @|b| are multi-dimensional unsigned integer arrays.
//The and operation is performed using 32 bit unsigned intermediates. Note that if a
//or b is a scalar, then each element of the other array is xor'ed with
// that scalar. Otherwise the two arrays must match in size.
//@@Example
//@<
//bitand(uint16([1,16,255]),uint16([3,17,128]))
//bitand(uint16([1,16,255]),uint16(3))
//@>
//@@Tests
//@{ test_bitxor1.m
//function test_val = test_bitxor1
// test_val = all(bitxor([1,5,42],3) == [2 6 41]);
//@}
//@@Signature
//function bitxor BitxorFunction
//inputs a b
//outputs y
//!
ArrayVector BitxorFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 2)
throw Exception("bitxor requires at least two arguments");
return ArrayVector(DotOp<OpBitXor>(arg[0],arg[1]));
}
//!
//@Module BITCMP Bitwise Boolean Complement Operation
//@@Section BINARY
//@@Usage
// Usage
//
// Performs a bitwise binary complement operation on the argument and
// returns the result. The syntax for its use is
//@[
// y = bitcmp(a)
//@]
// where a is an unsigned integer arrays. This version of the command
// uses as many bits as required by the type of a. For example, if
// a is an uint8 type, then the complement is formed using 8 bits.
// The second form of bitcmp allows you to specify the number of bits
// to use,
//@[
// y = bitcmp(a,n)
//@]
// in which case the complement is taken with respect to n bits, where n must be
// less than the length of the integer type.
//
//@@Example
//@<
//bitcmp(uint16(2^14-2))
//bitcmp(uint16(2^14-2),14)
//@>
//@@Signature
//function bitcmp BitcmpFunction
//inputs a n
//outputs y
//!
template <typename T>
static Array TBitCmpFunc(const BasicArray<T> &x, double maxval) {
BasicArray<T> y(x.dimensions());
for (index_t i=1;i<=y.length();i++) {
y[i] = maxval - 1 - x[i];
}
return Array(y);
}
#define MacroBitCmp(ctype,cls) \
case cls: return ArrayVector(TBitCmpFunc<ctype>(y.constReal<ctype>(),maxval));
ArrayVector BitcmpFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 1)
return ArrayVector(Array());
if (arg.size() == 1) {
switch (arg[0].dataClass()) {
case UInt8: return ArrayVector(UnaryOp<uint8,OpBitCmp>(arg[0],UInt8));
case UInt16: return ArrayVector(UnaryOp<uint16,OpBitCmp>(arg[0],UInt16));
case UInt32: return ArrayVector(UnaryOp<uint32,OpBitCmp>(arg[0],UInt32));
case UInt64: return ArrayVector(UnaryOp<uint64,OpBitCmp>(arg[0],UInt64));
default:
throw Exception("bitcmp is only defiled for unsigned integer types.");
}
}
int bits = arg[1].asInteger();
if (bits <= 0) throw Exception("bitcmp bits must be positive");
double maxval = pow(2.0,double(bits));
if (!IsInteger(arg[0])) throw Exception("bitcmp can only be applied to integer arguments");
if (!IsNonNegative(arg[0])) throw Exception("bitcmp argument must be nonnegative");
if (arg[0].isComplex()) throw Exception("bitcmp argument must be real valued");
if (arg[0].isSparse()) throw Exception("bitcmp is not defined for sparse matrices");
Array y(arg[0]);
y.ensureNotScalarEncoded();
switch (arg[0].dataClass()) {
default:
throw Exception("type not supported by bitcmp");
MacroExpandCasesNoBool(MacroBitCmp);
}
}
//!
//@Module INT2BIN Convert Integer Arrays to Binary
//@@Section TYPECAST
//@@Usage
//Computes the binary decomposition of an integer array to the specified
//number of bits. The general syntax for its use is
//@[
// y = int2bin(x,n)
//@]
//where @|x| is a multi-dimensional integer array, and @|n| is the number
//of bits to expand it to. The output array @|y| has one extra dimension
//to it than the input. The bits are expanded along this extra dimension.
//@@Example
//The following piece of code demonstrates various uses of the int2bin
//function. First the simplest example:
//@<
//A = [2;5;6;2]
//int2bin(A,8)
//A = [1;2;-5;2]
//int2bin(A,8)
//@>
//@@Tests
//@{ test_int2bin1.m
//function test_val = test_int2bin1
// test_val = all(int2bin([4;3;2;1],3)==[1,0,0;0,1,1;0,1,0;0,0,1]);
//@}
//@@Signature
//function int2bin Int2BinFunction
//inputs x bits
//outputs y
//!
struct OpInt2Bin {
template <typename T>
static inline void func(const ConstSparseIterator<T> &, SparseSlice<T>&) {
throw Exception("int2bin not supported for sparse matrices");
}
template <typename T>
static inline void func(const ConstComplexSparseIterator<T> &,
SparseSlice<T>&, SparseSlice<T>&) {
throw Exception("int2bin not supported for sparse matrices");
}
template <typename T>
static inline void func(const BasicArray<T> &src, BasicArray<T>& dest) {
int numbits = int(dest.length());
if (numbits < 1) numbits = 1;
int64 value = int64(src[1]);
for (int i=0;i<numbits;i++) {
dest[numbits-i] = T(value & 1);
value >>= 1;
}
}
template <typename T>
static inline void func(const BasicArray<T> &src_real, const BasicArray<T> &src_imag,
BasicArray<T>& dest_real, BasicArray<T>& dest_imag) {
func(src_real,dest_real);
func(src_imag,dest_imag);
}
};
ArrayVector Int2BinFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 2)
throw Exception("int2bin requires at least two arguments");
int n = arg[1].asInteger();
n = qMax(0,qMin(64,n));
return ArrayVector(VectorOp<OpInt2Bin>(arg[0],n,
qMax(1,arg[0].dimensions().lastSingular())).toClass(Bool));
}
//!
//@Module BIN2INT Convert Binary Arrays to Integer
//@@Section TYPECAST
//@@Usage
//Converts the binary decomposition of an integer array back
//to an integer array. The general syntax for its use is
//@[
// y = bin2int(x)
//@]
//where @|x| is a multi-dimensional logical array, where the last
//dimension indexes the bit planes (see @|int2bin| for an example).
//By default, the output of @|bin2int| is unsigned @|uint32|. To
//get a signed integer, it must be typecast correctly. A second form for
//@|bin2int| takes a @|'signed'| flag
//@[
// y = bin2int(x,'signed')
//@]
//in which case the output is signed.
//@@Example
//The following piece of code demonstrates various uses of the int2bin
//function. First the simplest example:
//@<
//A = [2;5;6;2]
//B = int2bin(A,8)
//bin2int(B)
//A = [1;2;-5;2]
//B = int2bin(A,8)
//bin2int(B)
//int32(bin2int(B))
//@>
//@@Tets
//@{ test_bin2int1.m
//function test_val = bin2int1
// A = floor(rand(4,4,3)*10);
// B = int2bin(A,4);
// C = bin2int(B);
// test_val = issame(A,C);
//@}
//@@Signature
//function bin2int Bin2IntFunction
//inputs x flag
//outputs y
//!
struct OpBin2Int {
template <typename T>
static inline void func(const ConstSparseIterator<T> &, SparseSlice<T>&) {
throw Exception("int2bin not supported for sparse matrices");
}
template <typename T>
static inline void func(const ConstComplexSparseIterator<T> &,
SparseSlice<T>&, SparseSlice<T>&) {
throw Exception("int2bin not supported for sparse matrices");
}
template <typename T>
static inline void func(const BasicArray<T> &src, BasicArray<T>& dest) {
int numbits = int(src.length());
uint64 value = (src[1] != 0) ? 1 : 0;
for (int j=1;j<numbits;j++) {
value <<= 1;
value |= (src[j+1] != 0) ? 1 : 0;
}
dest[1] = value;
}
template <typename T>
static inline void func(const BasicArray<T> &src_real, const BasicArray<T> &src_imag,
BasicArray<T>& dest_real, BasicArray<T>& dest_imag) {
func(src_real,dest_real);
func(src_imag,dest_imag);
}
};
ArrayVector Bin2IntFunction(int nargout, const ArrayVector& arg) {
if (arg.size() < 1)
throw Exception("bin2int requires at least one arguments");
if ((arg.size() == 2) && (arg[1].asString().toUpper() == "SIGNED"))
return ArrayVector(VectorOp<OpBin2Int>(arg[0].toClass(Int32),1,
arg[0].dimensions().lastNotOne()-1));
else
return ArrayVector(VectorOp<OpBin2Int>(arg[0].toClass(UInt32),1,
arg[0].dimensions().lastNotOne()-1));
}
|