I have to obbtain this: (from MAtlab)
Y = inv(X) returns the inverse of the square matrix X. A warning message is printed if X is badly scaled or nearly singular.
I did in OpenCV with :
Z=Z.inv(DECOMP_LU);
But here the function I m writing is blocked. DO you know why . Thanks