To update the Krylov space (v, h) after adding dak to the kth column of a, you can modify the existing Arnoldi algorithm steps. Here is the general procedure:
main.m28 chars2 lines
dak
to the kth column of a
and update v
and h
accordingly:main.m128 chars3 lines
Make sure that m
represents the number of iterations in the Arnoldi method, v1
is the initial vector for the Krylov space, and dak
is the vector to be added to the kth column of a
.
By following these steps, you can update the Krylov space (v, h) after adding dak
to the kth column of a
in MATLAB.
gistlibby LogSnag