Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. l1={a,b,c};l2={d,e,f};l3={g,h,i};
  2. Do[
  3. m1=Table[(l1[[i]]+l2[[j]]),{i,3},{j,3}]; (*just as an example, not the real operations*)
  4. m2=Table[(l1[[i]]+l3[[j]]),{i,3},{j,3}];
  5. {vl,m1d,vr}=SingularValueDecomposition[m1];
  6. {ul,m2d,ur}=SingularValueDecomposition[m2];
  7. ...
  8. ,{a,2,5},{b,a-1},{c,0,b-1},{d,2,5},{e,d-1},{f,0,e-1},{g,2,5},{h,g-1},{i,0,h-1}
  9. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement