2025-05-23 16:19:42 +08:00

25 lines
335 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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]]
# 创建lib