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

    function [keys, values] = getallvalues(obj)
%GETALLVALUES Return all data from object
%
%  [KEYS, VALUES] = GETALLVALUES(OBJ) returns all of the keys and data
%  stored in the object. VALUES is returned as a cell array of the data
%  stored.

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


[keys, values] = getallvalues(obj.mbcstore);
if isempty(values)
    values = {};
end