mindspore/docs/api/api_python/ops/mindspore.ops.MatrixDetermi...

15 lines
557 B
ReStructuredText
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.MatrixDeterminant
===============================
.. py:class:: mindspore.ops.MatrixDeterminant
计算一个或多个方阵的行列式。
更多参考详见 :func:`mindspore.ops.det`
输入:
- **input** (Tensor) - 输入Tensorshape 为 :math:`[..., M, M]` 。矩阵必须至少有两个维度最后两个维度尺寸必须相同。支持的数据类型为float32、float64、complex64或complex128。
输出:
Tensor其shape为 :math:`input.shape[:-2]` ,数据类型与 `input` 相同。