Suppose that I have two sparse matrices $H_{1}$ and $H_{2}$ which contain only $0$ and $1$ values, so for example can be of the form
$$H_{1} = \begin{bmatrix} 1 & 0 & 1\\ 0 & 0 &1 \\ 1& 1 &1 \\ 0& 0 & 1\\ 1& 0 &0 \\ 0& 1 & 0 \end{bmatrix}$$
$$H_{2} = \begin{bmatrix} 0 & 0 & 1\\ 1 & 1 &1 \\ 1& 0 &0 \\ 0& 0 & 0\\ 0& 1 &0 \\ 0& 1 & 0 \end{bmatrix}$$
My goal is to measure the distance between those two matrices in the most accurate way with the use of a distance measure (probabilistic, or whatever else measure):
I was wondering if there exists a distance (I do not mind having all the distance properties) that is suitable for such comparisons, of sparse matrices with elements only $0$ and $1$.
There is a dozen of distances between matrices as can be seen here https://www.itl.nist.gov/div898/software/dataplot/refman2/auxillar/matrdist.htm and here Distance/Similarity between two matrices, also I thought that we might be able to construct a distance with the use of correlations between the columns of the two matrices, i.e.
$$dist_{cor} = \frac{1}{3}\sum_{i=1}^{3}cor(H_{1}[,i],H_{2}[,i])$$
So, my question sums up if there exist measures (distance measures) for calculating such particular distances, or a literature that I can look into or ideas to construct a measure??