Code covered by the BSD License  

Highlights from
Strategy Design Pattern in Matlab 2008b

from Strategy Design Pattern in Matlab 2008b by Paul Williamson
Strategy Pattern defined by "Gang of Four" in: "Design Patterns: Elements of ...," Gamma, et al.

TimeSeries
classdef TimeSeries
    %TIMESERIES Summary of this class goes here
    %   Detailed explanation goes here
    
    properties
        Name = '';
        % More properties will go here incl possibly a data matrix
    end
    
    methods
        function obj = TimeSeries(inName)
            obj.Name = inName;
        end
        
        % More methods go in here specific to data
    end
    
end

%EOF

Contact us at files@mathworks.com