scipy.linalg.blas.zrotg#

scipy.linalg.blas.zrotg(a, b) = <fblas function zrotg>#

Construct a Givens plane rotation (c, s) that eliminates b (BLAS zrotg).

Parameters:
acomplex

First component of the vector to rotate.

bcomplex

Second component of the vector to rotate.

Returns:
ccomplex

Cosine of the rotation. Its imaginary part is zero.

scomplex

Sine of the rotation.