File: stack_empty_col.rs

package info (click to toggle)
rust-nalgebra 0.33.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,340 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 103 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
use nalgebra::{matrix, stack};

fn main() {
    let m = matrix![1, 2; 3, 4];
    stack![0, m];
}