dqrls#

rlinalg.linpack.dqrls(*args, **kwargs)#

Wrapper for dqrls.

Parameters:
  • x (input rank-2 array('d') with bounds (n,p))

  • y (input rank-2 array('d') with bounds (n,ny))

  • tol (input float)

  • overwrite_x (input int, optional) – Default: 0

  • n (input int, optional) – Default: shape(x, 0)

  • p (input int, optional) – Default: shape(x, 1)

  • ny (input int, optional) – Default: shape(y, 1)

Returns:

  • x (rank-2 array(‘d’) with bounds (n,p))

  • b (rank-2 array(‘d’) with bounds (p,ny))

  • rsd (rank-2 array(‘d’) with bounds (n,ny))

  • qty (rank-2 array(‘d’) with bounds (n,ny))

  • k (int)

  • jpvt (rank-1 array(‘i’) with bounds (p))

  • qraux (rank-1 array(‘d’) with bounds (p))