image thumbnail
from Order book simulation by Dimitri Shvorob
(a naive artificial stock market)

Strategy
classdef Strategy
             
   methods (Abstract)
     
       eval
       
   end
   
   methods
      
       function[out] = char(obj)
           out = class(obj);
       end
       
   end
       
end

Contact us at files@mathworks.com