mindspore.ops.orgqr
- mindspore.ops.orgqr(input, input2)[source]
Compute the first
columns of a product of Householder matrices.Usually used to calculate the explicit representation of the orthogonal matrix
returned bymindspore.ops.Geqrf
.Take the case of input without batch dimension as an example: Suppose input input is a matrix of size
after householder transformation. When the diagonal of input is set to 1, every column of lower triangular in input is denoted as for for , this function returns the first columns of the matrixwhere
is the -dimensional identity matrix. And when is complex, is the conjugate transpose, otherwise the transpose. The output matrix is the same size as the input matrix input. is corresponding to input2.- Parameters
- Returns
Tensor
- Supported Platforms:
Ascend
GPU
CPU
Examples
>>> import mindspore >>> input = mindspore.tensor([[-2.0, -1.0], [1.0, 2.0]]) >>> y, tau = mindspore.ops.geqrf(input) >>> mindspore.ops.orgqr(y, tau) Tensor(shape=[2, 2], dtype=Float32, value= [[-8.94427061e-01, 4.47213590e-01], [ 4.47213590e-01, 8.94427180e-01]])