Comparing one `CategoricalMatrix` against another always yields `False` even if their contents are identical: ```python import tabmat mat1 = tabmat.CategoricalMatrix([1,2,3]) mat2 = tabmat.CategoricalMatrix([1,2,3]) mat1 == mat2 ``` ``` False ```