scipy.linalg.lapack.dpotrs¶
- scipy.linalg.lapack.dpotrs(c, b[, lower, overwrite_b]) = <fortran object>¶
- Wrapper for dpotrs. - Parameters: - c : input rank-2 array(‘d’) with bounds (n,n) - b : input rank-2 array(‘d’) with bounds (n,nrhs) - Returns: - x : rank-2 array(‘d’) with bounds (n,nrhs) and b storage - info : int - Other Parameters: - overwrite_b : input int, optional - Default: 0 - lower : input int, optional - Default: 0 
