Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function [totalProfit] = compute(p,exit)
  2.  
  3. %% Declaration of variables
  4.  
  5. entry=0;
  6. T = length(data);
  7. .
  8. .
  9. .
  10. end
  11.  
  12. T = evalin('caller','length(data)')
  13.  
  14. function [totalProfit] = compute(p,exit,data)
  15. T = length(data) ;
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement