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

21 lines
694 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.geqrf
===================
.. py:function:: mindspore.ops.geqrf(input)
将输入tensor进行QR分解 :math:`A = QR`
分解为正交矩阵 `Q` 和上三角矩阵 `R` 的乘积。
.. warning::
这是一个实验性API后续可能修改或删除。
参数:
- **input** (Tensor) - 输入tensor。
返回:
两个tensor组成的tuple( `y` , `tau` )。
- **y** (Tensor) - 隐式存储 `Q``R` 矩阵。 `Q` Householder反射向量存储在对角线下方 `R` 的元素存储在对角线及上方。
- **tau** (Tensor) - 存储每个Householder变换的缩放因子Householder反射系数