I know for the fact that square binary matrix can be converted to a graph. For example using gplot in matlab matrix below can be converted to the graph
0 1 1
1 0 0
0 1 0
can be represented by a graph
A->B, A->C, B->A,C->B
But I wonder if there is a way to convert a rectangular matrix like
0 1
1 0
0 1
to a graph someway in matlab or any other language?
Also my rows and columns are different variables.