Matrix Determinant
The MATDET outputs the determinant of a square input matrix. If the input is:
A=[A11 A12 A13;A21 A22 A23;A31 A32 A33]
then the output of the block has the form of:
y=A11*(A22*A33-A23*A32)-A12*(A21*A33-A23*A31)+A13*(A21*A32-A22*A31).
The equivalent function of MATDET in Scilab is `det`_.
U=[1 0 63;2 -2 5;9 9 4]
y=2215