notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

ZeroOneMatrix.md (312B)


      1 # Zero-one Matrix
      2 
      3 Ch 9.3
      4 
      5 **Definition:** A zero one matrix is a boolean matrix where each index is either 0 or 1.
      6 
      7 When multiplying boolean matricies we can either do matrix multiplication and assume anything non-zero is one or we can do or comparisons (more inline with the philosophy of zero one matricies).