I have .mat file that contains a binary (0,1) matrix with size 100*100*100. I have used this syntax to import it in mathematica
binarymap=Import["matlab.mat","Data"]
Dimensions@binarymap(*Why the dimensions is not 100*100*100?*)
{1,100,100,100}
binarymap[[1,1,1,1]] == False (*Why false?*)
When I load it in Matlab, it works correctly. What is the problem?