Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Alphai(: , 1) = {@(x,y) Alpha(1,1)+Alpha(2,1)*x+Alpha(3,1)*y};
  2. Alphai(: , 2) = {@(x,y) Alpha(1,2)+Alpha(2,2)*x+Alpha(3,2)*y};
  3. Alphai(: , 3) = {@(x,y) Alpha(1,3)+Alpha(2,3)*x+Alpha(3,3)*y};
  4. for ind = 1:3
  5. temp0 = integral2(Alphai(: , ind), xmin , xmax , ymin , ymax);
  6. end
  7.  
  8. First input argument must be a function handle
  9.  
  10. for ind = 1:3
  11. temp0 = integral2(Alphai{: , ind}, xmin , xmax , ymin , ymax);
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement