transpose_view

Function transpose_view 

Source
pub fn transpose_view<A, S>(
    array: &ArrayBase<S, Ix2>,
) -> Result<Array<A, Ix2>, CoreError>
where A: Clone, S: Data<Elem = A>,
Expand description

Create a transposed copy of a 2D array

§Arguments

  • array - The array to transpose

§Returns

A transposed copy of the array