21 lines
320 B
Markdown
Raw Normal View History

2025-01-24 09:55:07 +08:00
# array2 debug
![[Pasted image 20250123103518.png]]
aug_mat矩阵大小600
012-24 表示矩阵第0行12-24列数据
例:
```rust
    let matrix: Array2<f64> = array![
        [1.0, 2.0, 3.0],
        [4.0, 5.0, 6.0],
        [7.0, 8.0, 9.0]
    ];
```
![[Pasted image 20250123103848.png]]