Fix repmat with complex bug.

This commit is contained in:
sunwen
2023-04-20 17:52:36 +08:00
parent ed7312992f
commit 84fee55eb8
2 changed files with 12 additions and 7 deletions

View File

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