3 Vector

3.2 Syntactic sugar for Vec<f64>

  • There is useful macro for Vec<f64>

  • For R, there is c

    # R
    a = c(1,2,3,4)
  • For Peroxide, there is c!

    // Rust
    fn main() {
        let a = c!(1,2,3,4);
    }