I am currently using MATLAB to do matrix division of very large, very sparse, complex matrices that are symmetric in structure, but asymmetric in value (i.e. A(1,2)=3+4i and A(2,1)=3-4i).
I am now converting my code to Java. What is the proper equivalent function of A\b in Suitesparse/LApack?
I know this is what MATLAB is running for A\b, but chol seems to be limited to real, symmetric matrices.