gusucode.com > datatypes 工具箱matlab源码程序 > datatypes/@tabular/private/isSameClass.m

    function tf = isSameClass(a,b)
%ISSAMECLASS Check if A and B are the same class.

%   Copyright 2016 The MathWorks, Inc.

tf = strcmp(class(a), class(b));