SciPy

scipy.linalg.blas.dsyr2

scipy.linalg.blas.dsyr2 = <fortran object>
dsyr2 - Function signature:
a = dsyr2(alpha,x,y,[lower,incx,offx,incy,offy,n,a,overwrite_a])
Required arguments:
alpha : input float x : input rank-1 array(‘d’) with bounds (*) y : input rank-1 array(‘d’) with bounds (*)
Optional arguments:
lower := 0 input int incx := 1 input int offx := 0 input int incy := 1 input int offy := 0 input int n := ((len(x)-1-offx)/abs(incx)+1 <=(len(y)-1-offy)/abs(incy)+1 ?(len(x)-1-offx)/abs(incx)+1 :(len(y)-1-offy)/abs(incy)+1) input int a : input rank-2 array(‘d’) with bounds (n,n) overwrite_a := 0 input int
Return objects:
a : rank-2 array(‘d’) with bounds (n,n)