Sincerely I've zero knowledge of this kind of math, but I've recently come to work in a friend's project to calculate a matrix of this size. This friend of mine has tried to do this with excel, with php, with Ruby and now he wants to try Fortran, I just want to know if this is possible with some kind of math-software.
I've read some papers and there are methods to calculate a big matrix of $10\times10$ but no method for a bigger one, this is the origin of my question.
EDIT: this is a sample of the matrix (Excel File): matrix.xlsx
(This was meant as a comment, not an answer, but it's too long to fit as a comment.)
You asked "Wouldn't that change the result of the operation?", and my reply follows.
No, you can always expand a determinant along any row or column and write it in terms of smaller determinants. It will yield the same result regardless of the row or column you pick. Here's a simple example with a much smaller $3\times 3$ matrix, but the idea is exactly the same. If I pick, say, the first row, which contains entries $a$, $b$, and $c$, I can write the determinant as $$\left| \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \\ \end{array} \right| = a\left| \begin{array}{cc} e & f \\ h & i \\ \end{array} \right| - b\left| \begin{array}{cc} d & f \\ g & i \\ \end{array} \right| +c\left| \begin{array}{cc} d & e \\ g & h \\ \end{array} \right|$$
See how the result is in terms of three smaller determinants? Now, suppose for example that I knew that $a$ and $b$ were both $0$; then I wouldn't need to compute the first two smaller determinants since they are then multiplied by $0$ and so they vanish. In that case, I would be left with a much simpler reduction like this:
$$\left| \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \\ \end{array} \right| = c\left| \begin{array}{cc} d & e \\ g & h \\ \end{array} \right|$$
So a judicious choice of row or column for expansion will let you compute the determinant with very little actual number crunching, if the matrix has a whole lot of $0$ entries. Always look for rows or columns that have as many $0$ entries as possible.
Note the method for expansion: for each entry in the row you choose, form the reduced matrix obtained by omitting the entire row and the entire column containing the entry, multiply the entry by that smaller determinant, stick on an alternating sign, and sum (notice the sign changes I made in using the multipliers: $+a,-b,+c$; same thing works for any size determinant).