SciPy

This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.linalg.blas.ctrmv

scipy.linalg.blas.ctrmv(a, x[, offx, incx, lower, trans, unitdiag, overwrite_x]) = <fortran object>

Wrapper for ctrmv.

Parameters:

a : input rank-2 array(‘F’) with bounds (n,n)

x : input rank-1 array(‘F’) with bounds (*)

Returns:

x : rank-1 array(‘F’) with bounds (*)

Other Parameters:
 

overwrite_x : input int, optional

Default: 0

offx : input int, optional

Default: 0

incx : input int, optional

Default: 1

lower : input int, optional

Default: 0

trans : input int, optional

Default: 0

unitdiag : input int, optional

Default: 0