# Refers to Algorithm 2 in the paper, it's needed to implement the algorithm 4. It doesn't work yet. Refer to the file testing.ipynb for more details. This function down here is just a place holder for now
# Refers to Algorithm 2 in the paper, it's needed to implement the algorithm 4. It doesn't work yet. Refer to the file testing.ipynb for more details. This function down here is just a place holder for now
defArnoldi(A,v,m):
defArnoldi(A,v,m):
beta=norm(v)
beta=norm(v)
v=v/beta
v=v/beta
h=sp.sparse.lil_matrix((m,m))
h=sp.sparse.lil_matrix((m,m))
forjinrange(m):
forjinrange(m):
w=A@v
w=A@v
foriinrange(j):
foriinrange(j):
tmp=v.T@w
tmp=v.T@w
h[i,j]=tmp[0,0]
h[i,j]=tmp[0,0]
w=w-h[i,j]*v
w=w-h[i,j]*v
h[j,j-1]=norm(w)
h[j,j-1]=norm(w)# in the paper the index is referred as h[j+1,j] but since python starts from 0 it's h[j,j-1]