diff --git a/+MATLAB/+DataTypes/NDTable.m b/+MATLAB/+DataTypes/NDTable.m index fdc4dad..290dca1 100644 --- a/+MATLAB/+DataTypes/NDTable.m +++ b/+MATLAB/+DataTypes/NDTable.m @@ -319,7 +319,9 @@ if isscalar(indexOp) obj.Data(Indices{:})=varargin{1}; else - obj.Data(Indices{:}).(indexOp(2:end))=varargin{:}; + Temp=obj.Data(Indices{:}); + Temp.(indexOp(2:end))=varargin{:}; + obj.Data(Indices{:})=Temp; end end function n = parenListLength(obj,indexOp,Context) diff --git a/+MATLAB/Version.m b/+MATLAB/Version.m index 1942be9..b66f739 100644 --- a/+MATLAB/Version.m +++ b/+MATLAB/Version.m @@ -1,5 +1,5 @@ function V = Version -V.Me='v18.1.0'; +V.Me='v18.1.1'; V.MATLAB='R2023b'; persistent NewVersion try