mindspore/docs/api/api_python/ops/mindspore.ops.Orgqr.rst

19 lines
715 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.Orgqr
====================
.. py:class:: mindspore.ops.Orgqr
计算 :class:`mindspore.ops.Geqrf` 返回的正交矩阵 :math:`Q` 的显式表示。
.. warning::
这是一个实验性API后续可能修改或删除。
更多细节请参考 :func:`mindspore.ops.orgqr`
输入:
- **x** (Tensor) - shape :math:`(*, M, N)` 的Tensor表示二维或者三维矩阵。数据类型为float32、float64、complex64或者complex128。
- **tau** (Tensor) - Householder转换的反射系数其shape为 :math:`(*, K)` ,其中 `K` 小于等于 `N` 。数据类型与 `x` 一致。
输出:
Tensor数据类型和shape与 `input` 一致。