|
|
Algorithm 1: Producing the optimal current patterns |
|
|
Input: orthonormal current matrix: T, conductivity estimate ρ(0)
|
| Initialize T̂= T; |
| repeat |
Apply T̂ and measure voltages V;
Apply T̂ and compute the predicted voltages U(ρ(0));
Form the voltage difference matrix D = V − U(ρ(0)) and P = D*D;
Perform eigenvalue decomposition of P and form the eigenvector matrix E so that their corresponding eigenvalues are sorted in descending order;
T̂ = T̂E;
until
the current pattern converges;
Output: Optimal current matrix: T̂
|
|