[][src]Struct arcos_kdl::svd_eigen::SvdResult

pub struct SvdResult {
    pub u_matrix: DMatrix<f64>,
    pub s_vector: DVector<f64>,
    pub v_matrix: DMatrix<f64>,
    // some fields omitted
}

Struct for storing SVD results.

This struct Implements the Special algorithm for SVD used in Weighted damped least square kinematics.

Fields

u_matrix: DMatrix<f64>

Matrix holding left singular vectors

s_vector: DVector<f64>

Vector holding singular values

v_matrix: DMatrix<f64>

Matrix holding right singular vectors

Methods

impl SvdResult[src]

pub fn new(num_joints: usize) -> Self[src]

Create a default empty SvdResult

pub fn copy_jacobian_to_u_matrix(&mut self, jacobian: &Jacobian)[src]

Copy a Jacobian to the matrix holding the left singular vectors

pub fn householder_reduction_to_bidiagonal(&mut self, epsilon: f64) -> f64[src]

Reduction to bidiagonal form using the Householder Rotations method

pub fn accumulate_right_hand_transformations(&mut self, epsilon: f64)[src]

Store the right singular vectors in its matrix (before convergence iterations)

pub fn accumulate_left_hand_transformations(&mut self, epsilon: f64)[src]

Store the left singular vectors in its matrix (before convergence iterations)

pub fn diagonalize_bidiagonal_form(
    &mut self,
    maxiter: usize,
    anorm: f64,
    epsilon: f64
)
[src]

Find a diagonal matrix with the final singular values using an iterative Algorithm. Any changes in singular values order or magnitud is also reflected in singular vectors

pub fn compute(&mut self, jacobian: &Jacobian, epsilon: f64, maxiter: usize)[src]

SVD computation with damped least squares using huseholder rotations

Trait Implementations

impl Clone for SvdResult[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SvdResult

impl Sync for SvdResult

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,