www.gusucode.com > mbc 工具箱 matlab 源码程序 > mbc/@mbcstore/mbcstore.m

    function obj= mbcstore
%MBCSTORE Constructor for mbcstore object
%
%  OUT = MBCSTORE creates a new instance of an mbcstore object.  The
%  mbcstore object allows storage and retrieval of information based on an
%  associated key.
%
%  Keys can be any datatype that support the horzcat, eq and length
%  methods.
%  Data can be any datatype that supports horzcat and indexing.

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.



obj.KeyList = [];
obj.DataList = [];


obj = class(obj, 'mbcstore');