Add repmat3d.

This commit is contained in:
sunwen
2023-06-08 15:23:54 +08:00
parent d6bb2dcbbf
commit 98425b3eb8
2 changed files with 34 additions and 0 deletions

View File

@@ -57,6 +57,8 @@ namespace Aurora {
Matrix repmat(const Matrix& aMatrix,int aRowTimes, int aColumnTimes, int aSliceTimes);
Matrix repmat3d(const Matrix& aMatrix,int aRowTimes, int aColumnTimes, int aSliceTimes);
Matrix log(const Matrix& aMatrix, int aBaseNum = -1);
Matrix exp(const Matrix& aMatrix);