I want to rewrite some code processing code from C ++ to Java. I end up with matrices of complex numbers (numbers with imaginary components). I need to find the inverse complex matrix NxN, as well as my own proprietary principle.
There are several Java libraries for real numbers, but I could not find anything that supports complex numbers. I found one library, but it was private and had to be licensed.
Was it implemented anywhere?
I can always associate the required C code with the JNI, but I did this to avoid platform dependency.
source share