Skip to content

Commit

Permalink
DataTypes.NDTable:修复NDTable串联问题
Browse files Browse the repository at this point in the history
  • Loading branch information
埃博拉酱 committed Nov 23, 2024
1 parent 01a04f1 commit f7dbb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion +MATLAB/+DataTypes/NDTable.m
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@
CatDimensions.DimensionName(end+1:ArgHeight)=Arg.Dimensions.DimensionName(CatHeight+1:end);
CatDimensions.IndexNames(end+1:ArgHeight)=Arg.Dimensions.IndexNames(CatHeight+1:end);
if ArgHeight>=dim
CatDim{V}=reshape(string(Arg.Dimensions{dim}),1,[]);
CatDim{V}=reshape(string(Arg.Dimensions.IndexNames{dim}),1,[]);
CatDim{V}(end+1:size(Arg.Data,dim))=missing;
end
CatData{V}=Arg.Data;
Expand Down

0 comments on commit f7dbb97

Please sign in to comment.