Skip to main content

transpose

Function transpose 

Source
pub fn transpose(
    m: usize,
    n: usize,
    a: &[f64],
    out: &mut [f64],
) -> Result<(), SolversError>
Expand description

Transpose the m×n row-major matrix a into the n×m row-major buffer out. Caller-owned, zero-heap. a is m*n, out is n*m.