Skip to content

Commit

Permalink
修复DataTypes.NDTable的点索引不能级联其它索引赋值的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
埃博拉酱 committed Jan 15, 2024
1 parent ce590c6 commit 6c099ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion +MATLAB/+DataTypes/NDTable.m
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion +MATLAB/Version.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function V = Version
V.Me='v18.1.0';
V.Me='v18.1.1';
V.MATLAB='R2023b';
persistent NewVersion
try
Expand Down

0 comments on commit 6c099ab

Please sign in to comment.