dpnp.linalg.qr

dpnp.linalg.qr(x1, mode='reduced')[source]

Compute the qr factorization of a matrix.

Factor the matrix a as qr, where q is orthonormal and r is upper-triangular.

For full documentation refer to numpy.linalg.qr.

Limitations

Input array is supported as dpnp.ndarray. Parameter mode=’complete’ is supported.