LU Factorization
The MATLU Block outputs two matrices L and U, with row pivoting, from the LU factorization of a square input matrix. If A is the input matrix then:
E*A=L*U where E is the permutation matrix, U an upper triangular matrix and L a lower triangular matrix.
The equivalent function of this block in Scilab is `[l,u,e]=lu(A)`_.