I have generated binary non singular matrix of size 602*602
l = 602;
w = round (rand (l,l));
now I want to find the inverse of this matrix in binary form, I tried this command
w_inv = mod(inv(w),2)
but the result is not in binary form. HELP!
If you have the Communications Systems Toolbox installed inverse in GF(2) can be obtained as simply as
cfr. Galois Field Computations and Create Galois field array. BTW, over the real field the determinant of w is not infinite, just to big to be represented as an IEEE floating point number.