Skip to content

Commit bee3ac4

Browse files
committed
new Mat methods: t and diag
1 parent 124eb15 commit bee3ac4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

phpdoc.php

+15
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,21 @@ public function subtract(Mat $value1, Mat $value2) {
277277

278278
}
279279

280+
/**
281+
* @return Mat|null $mat
282+
*/
283+
public function t() {
284+
285+
}
286+
287+
/**
288+
* @param int $diag
289+
* @return Mat|null $mat
290+
*/
291+
public function diag(int $diag) {
292+
293+
}
294+
280295
/**
281296
* @param int $dims
282297
* @param array $shape

0 commit comments

Comments
 (0)