This document describes a MATLAB script and function to calculate the determinant of a matrix without using the built-in det() function. It explains:
1) Converting the script into a function file that accepts the matrix and its dimension as inputs and returns the determinant.
2) The methodology uses cofactor expansion and calls the function recursively to compute the determinant.
3) The time complexity of the function is O(n!) due to the nested for loops and recursive calls.