Hi all
i want to solve a complex linear algebra equation in the form of
Ax = B. ( A, B are known and need to find B)
where A and B are complex.. A(n,n) & B (n,1) & x (n,1)
i want this to be solved using Fortran 77.
I've used Linpack solvers to solve Ax=B , when A,B,x all are real values
call solver (A,B,NETOT,1,z)
solver contains Linpack subroutines
but the same code does not work when A,B are complex matrices
i want to solve a complex linear algebra equation in the form of
Ax = B. ( A, B are known and need to find B)
where A and B are complex.. A(n,n) & B (n,1) & x (n,1)
i want this to be solved using Fortran 77.
I've used Linpack solvers to solve Ax=B , when A,B,x all are real values
call solver (A,B,NETOT,1,z)
solver contains Linpack subroutines
but the same code does not work when A,B are complex matrices