Skip to content

Commit 85c0380

Browse files
author
埃博拉酱
committed
DataTypes.NDTable支持DataFun.MeanSem
1 parent 1359b6f commit 85c0380

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

+MATLAB/+DataFun/MeanSem.mlx

8 Bytes
Binary file not shown.

+MATLAB/+DataTypes/NDTable.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,9 @@
513513
end
514514
obj.Dimensions(1:NDims,:)=obj.Dimensions(DimensionOrder,:);
515515
end
516+
function obj=sqrt(obj)
517+
obj.Data=sqrt(obj.Data);
518+
end
516519
%% 二元运算
517520
function obj=plus(obj1,obj2)
518521
obj=MATLAB.DataTypes.NDTable.Operate(obj1,obj2,@plus);

0 commit comments

Comments
 (0)