scipy.linalg.lapack.dptsv#
- scipy.linalg.lapack.dptsv(d, e, b[, overwrite_d, overwrite_e, overwrite_b]) = <fortran function dptsv>#
Wrapper for
dptsv
.- Parameters:
- dinput rank-1 array(‘d’) with bounds (n)
- einput rank-1 array(‘d’) with bounds (-1 + n)
- binput rank-2 array(‘d’) with bounds (n,nrhs)
- Returns:
- drank-1 array(‘d’) with bounds (n)
- durank-1 array(‘d’) with bounds (-1 + n) and e storage
- xrank-2 array(‘d’) with bounds (n,nrhs) and b storage
- infoint
- Other Parameters:
- overwrite_dinput int, optional
Default: 0
- overwrite_einput int, optional
Default: 0
- overwrite_binput int, optional
Default: 0