Crate rsblas
Source - Complex
- dasum
- sums the absolute values of the elements of an
f64 vector - daxpy
- adds a scalar multiple of an
f64 vector to another f64 vector - dcopy
- copies a
f64 vector into another f64 vector - ddot
- computes a dot product (inner product) of two
f64 vectors - drot
- Applies an
f64 plane rotation to 2 n-element f64 vectors: x and y, with respective strides incx and incy. - drotg
- construct givens plane rotation
- dscal
- Scales an
f64 vector by a constant. - dswap
- swaps two
f64 vectors, it interchanges n values of vector x and vector y - sasum
- sums the absolute values of the elements of an
f32 vector - saxpy
- adds a scalar multiple of an
f32 vector to another f32 vector - scopy
- copies a
f32 vector into another f32 vector - sdot
- computes a dot product (inner product) of two
f32 vectors - srot
- Applies an
f32 plane rotation to 2 n-element f32 vectors: x and y, with respective strides incx and incy. - srotg
- construct givens plane rotation
- sscal
- Scales an
f32 vector by a constant. - sswap
- swaps two
f32 vectors, it interchanges n values of vector x and vector y