Hi I am just a beginner in Java programming. I have got this as a small example in my matlab code which i want to convert into Java. I am stuck in taking the inverse of a simple 3x3 matrix. Below is the matlab code.
T = [1, 2, 3;...
4, 5, 6;...
7, 8, 9];
invT = inv(T);
Can someone please help in converting this to java. I know it will need to be converted into an array before taking an inverse and I have found out a way to convert it into an array. Just need help with the inverse. Any help will be appreciated.