Tgesv

Trait Tgesv 

Source
pub trait Tgesv: Scalar {
    // Required method
    unsafe fn gesv(
        layout: Layout,
        n: i32,
        nrhs: i32,
        a: &mut [Self],
        lda: i32,
        ipiv: &mut [i32],
        b: &mut [Self],
        ldb: i32,
    ) -> i32;
}

Required Methods§

Source

unsafe fn gesv( layout: Layout, n: i32, nrhs: i32, a: &mut [Self], lda: i32, ipiv: &mut [i32], b: &mut [Self], ldb: i32, ) -> i32

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Tgesv for f32

Source§

unsafe fn gesv( layout: Layout, n: i32, nrhs: i32, a: &mut [Self], lda: i32, ipiv: &mut [i32], b: &mut [Self], ldb: i32, ) -> i32

Source§

impl Tgesv for f64

Source§

unsafe fn gesv( layout: Layout, n: i32, nrhs: i32, a: &mut [Self], lda: i32, ipiv: &mut [i32], b: &mut [Self], ldb: i32, ) -> i32

Implementors§