↓ 138 callersFunctionmatrixR-like matrix constructor # Examples ``` #[macro_use] extern crate peroxide; use peroxide::fuga::*; fn main() { let a = matrix(c!(1,2,3,4), 2, 2, Ro
src/structure/matrix.rs:766
↓ 27 callersMethodcolExtract Column # Examples ``` #[macro_use] extern crate peroxide; use peroxide::fuga::*; fn main() { let a = matrix(c!(1,2,3,4), 2, 2, Row); assert_
src/structure/matrix.rs:1106
↓ 17 callersMethodchange_shapeChange Bindings `Row` -> `Col` or `Col` -> `Row` # Examples ``` use peroxide::fuga::*; let a = matrix(vec![1,2,3,4],2,2,Row); assert_eq!(a.layout()
src/structure/matrix.rs:938
↓ 14 callersMethodrowExtract Row # Examples ``` #[macro_use] extern crate peroxide; use peroxide::fuga::*; fn main() { let a = matrix(c!(1,2,3,4), 2, 2, Row); assert_eq!
src/structure/matrix.rs:1128