mindspore/docs/api/api_python/ops/mindspore.ops.LogMatrixDete...

16 lines
762 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.LogMatrixDeterminant
==================================
.. py:class:: mindspore.ops.LogMatrixDeterminant
计算一个或多个方块矩阵行列式绝对值的符号和对数。
更多参考详见 :func:`mindspore.ops.slogdet`
输入:
- **x** (Tensor) - 输入Tensorshape为 :math:`(..., M, M)` 。矩阵必须至少有两个维度最后两个维度尺寸必须相同。支持的数据类型为float32、float64、complex64或complex128。
输出:
- **sign** (Tensor) - 行列式的绝对值的对数的符号shape为 :math:`x.shape[:-2]` ,数据类型与 `x` 相同。
- **y** (Tensor) - 行列式的绝对值的对数shape为 :math:`x.shape[:-2]` ,数据类型与 `x` 相同。