Chebyshev iteration


In numerical linear algebra, the Chebyshev iteration is an
iterative method for determining the solutions of a system of linear equations. The method is named after Russian mathematician Pafnuty Chebyshev.
Chebyshev iteration avoids the computation of inner products as is necessary for the other nonstationary methods. For some distributed-memory architectures these inner products are a bottleneck with respect to efficiency. The price one pays for avoiding inner products is that the method requires enough knowledge about spectrum of the coefficient matrix A, that is an upper estimate for the upper eigenvalue and lower estimate for the lower eigenvalue. There are modifications of the method for nonsymmetric matrices A.

Example code in [MatLab]


function = SolChebyshev002
d = / 2;
c = / 2;
preCond = eye; % Preconditioner
x = x0;
r = b - A * x;
for i = 1:iterNum % size
z = linsolve;
if
p = z;
alpha = 1/d;
else if
beta = * ^2
alpha = 1/;
p = z + beta * p;
else
beta = ^2;
alpha = 1/;
p = z + beta * p;
end;
x = x + alpha * p;
r = b - A * x; %
if, break; end; % stop if necessary
end;
end

Code translated from
and