Sure can! With matlab of course.
You have a matrix A, vector X and solution vector b.
So you have A * X = b and you wanna know the vector X.
So in matlab, you fill in the matrix with your coefficients, then type on the following line B = inv(A); This will inverse your matrix.
Then compute...