[−][src]Trait rust_blas::vector::ops::Rot
Applies a Givens rotation matrix to a pair of vectors, where cos
is
the value of the cosine of the angle in the Givens matrix, and sin
is
the sine.
Required methods
fn rot<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
x: &mut V,
y: &mut W,
cos: &Self,
sin: &Self
)
x: &mut V,
y: &mut W,
cos: &Self,
sin: &Self
)
Implementations on Foreign Types
impl Rot for f32
[src]
fn rot<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
x: &mut V,
y: &mut W,
cos: &f32,
sin: &f32
)
[src]
x: &mut V,
y: &mut W,
cos: &f32,
sin: &f32
)
impl Rot for f64
[src]
fn rot<V: ?Sized + Vector<Self>, W: ?Sized + Vector<Self>>(
x: &mut V,
y: &mut W,
cos: &f64,
sin: &f64
)
[src]
x: &mut V,
y: &mut W,
cos: &f64,
sin: &f64
)