I am trying to inverse a matrix in matlab however i am struggling.
It is essentially a 3x3 matrix however each position of the matrix has 801 points.
I assume i need to use a for loop somehow to get out a inversed 3x3 matrix each containing 801 points.
inv(A11(1) A12(1) A13(1);A21(1) A22(1) A23(1);A31(1) A32(1) A33(1))
For example this inverse would give me the first of 801 points of the matrix
A11
etc are vectors with 801 values, and you are assembling 801 3×3 matrices for inversion? – John Alexiou