21 lines
320 B
Markdown
21 lines
320 B
Markdown
|
|
|||
|
# array2 debug
|
|||
|
![[Pasted image 20250123103518.png]]
|
|||
|
|
|||
|
aug_mat矩阵大小600
|
|||
|
|
|||
|
0,12-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]]
|