scipy.linalg.blas.dscal#

scipy.linalg.blas.dscal(a, x[, n, offx, incx]) = <fortran function dscal>#

dscal 的包裝器。

參數:
a輸入浮點數 (input float)
x輸入 rank-1 陣列(‘d’),邊界為 (*) (input rank-1 array(‘d’) with bounds (*))
返回:
xrank-1 陣列(‘d’),邊界為 (*) (rank-1 array(‘d’) with bounds (*))
其他參數:
n輸入整數,選用 (input int, optional)

預設值:(len(x)-offx)/abs(incx) (Default: (len(x)-offx)/abs(incx))

offx輸入整數,選用 (input int, optional)

預設值:0 (Default: 0)

incx輸入整數,選用 (input int, optional)

預設值:1 (Default: 1)