Parallel Colt 0.7.2

Uses of Class
cern.colt.matrix.tbit.BitMatrix

Packages that use BitMatrix
cern.colt.matrix.tbit Bit vectors and bit matrices. 
 

Uses of BitMatrix in cern.colt.matrix.tbit
 

Methods in cern.colt.matrix.tbit that return BitMatrix
 BitMatrix BitMatrix.copy()
          Returns a shallow clone of the receiver; calls clone() and casts the result.
 BitMatrix BitMatrix.part(int column, int row, int width, int height)
          Constructs and returns a new matrix with width columns and height rows which is a copy of the contents of the given box.
 

Methods in cern.colt.matrix.tbit with parameters of type BitMatrix
 void BitMatrix.and(BitMatrix other)
          Performs a logical AND of the receiver with another bit matrix.
 void BitMatrix.andNot(BitMatrix other)
          Clears all of the bits in receiver whose corresponding bit is set in the other bit matrix.
 void BitMatrix.or(BitMatrix other)
          Performs a logical OR of the receiver with another bit matrix.
 void BitMatrix.replaceBoxWith(int column, int row, int width, int height, BitMatrix source, int sourceColumn, int sourceRow)
          Replaces a box of the receiver with the contents of another matrix's box.
 void BitMatrix.xor(BitMatrix other)
          Performs a logical XOR of the receiver with another bit matrix.
 


Parallel Colt 0.7.2

Jump to the Parallel Colt Homepage