gusucode.com > datatypes 工具箱matlab源码程序 > datatypes/+matlab/+internal/+table/subsasgnRecurser.m

    function a = subsasgnRecurser(a,s,b)
%SUBSASGNRECURSER Utility for overloaded subsasgn method in @table.

%   Copyright 2012 The MathWorks, Inc.

% Call builtin, to get correct dispatching even if b is a table object.
a = builtin('subsasgn',a,s,b);