MATLAB: How to find inverse to the given matrix using matlab program

i have a matrix of 11*11. now i need to find its inverse using matlab code. so can u tell me hw to find it.

Best Answer

invm = inv(m);