5 releases
Uses old Rust 2015
0.2.3 | Feb 20, 2024 |
---|---|
0.2.2 | Nov 8, 2022 |
0.2.1 | Mar 31, 2021 |
0.2.0 | Jan 5, 2019 |
0.1.0 | Jan 2, 2019 |
#102 in Algorithms
184,512 downloads per month
Used in 366 crates
(18 directly)
22KB
237 lines
transpose
Utility for transposing multi-dimensional data See the API Documentation for more details.
transpose
is #![no_std]
Example
// Create a 2D array in row-major order: the rows of our 2D array are contiguous,
// and the columns are strided
let input_array = vec![ 1, 2, 3,
4, 5, 6];
// Treat our 6-element array as a 2D 3x2 array, and transpose it to a 2x3 array
let mut output_array = vec![0; 6];
transpose::transpose(&input_array, &mut output_array, 3, 2);
// The rows have become the columns, and the columns have become the rows
let expected_array = vec![ 1, 4,
2, 5,
3, 6];
assert_eq!(output_array, expected_array);
Compatibility
The transpose
crate requires rustc 1.26 or greater.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~190–255KB