If I want to solve a matrix equation like $Ax =b$, where $A$ is $n \times n$ matrix and real, and $b$ is a real vector which has a length $n$, $x$ is the solution for the linear equation. I solved the above equation by using that solver $Ax =b$.
What if $A$ is $n \times n$ matrix and complex, and $b$ is a complex vector which has a length $n$. Can I use the same strategy?
EDIT:
We can find the solution of x by finding the inverse of A.
B= inv(A)
And therefore
x =A^{-1}b.
x= B*b
Can i apply the same solver if A and b are complex?
Yes, if your method is Gaussian elimination.