Logo

Programming-Idioms

History of Idiom 26 > diff from v68 to v69

Edit summary for version 69 by programming-idioms.org:
[Rust] Avoid link shortener if possible

Version 68

2020-03-16, 17:25:16

Version 69

2020-03-20, 17:58:40

Idiom #26 Create a 2-dimensional array

Declare and initialize a matrix x having m rows and n columns, containing real numbers.

Illustration

Idiom #26 Create a 2-dimensional array

Declare and initialize a matrix x having m rows and n columns, containing real numbers.

Illustration
Code
let mut x = vec![vec![0.0f64; N]; M];
Code
let mut x = vec![vec![0.0f64; N]; M];
Demo URL
http://is.gd/w2yN9Y
Demo URL
https://play.rust-lang.org/?version=stable&mode=debug&edition=2015&gist=e6aaa3fd33994a3e656345e687d626cb