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

    function OK = isequal(obj1, obj2)
%ISEQUAL Check whether two guidarrays are identical
%
%  ISEQUAL(G1, G2) returns true if G1 and G2 both contain the same guids in
%  the same order.

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


OK = isequal(obj1.values, obj2.values);