I have three equations, where u is previously defined as an mx1 vector and A is an mxn matrix:
v = A'*u/norm(A'*u);
s = norm(A*v);
u = A*v/norm(A*v);
I'm trying to reiterate these equations until they converge. I've been trying to use the solve() function:
[v s u] = solve(v == A'*u/norm(A'*u), s == norm(A*v), u == A*v/norm(A*v), v, s, u)
But I keep getting a whole bunch of errors when using that. How else could I do this?
Not sure what you were expecting using
solve
, but you can do this numerically using awhile
loop until the change inv
andu
is smaller than some tolerance.