Skip to content

Commit

Permalink
Update Numpy tutorial with array creation and indexing details
Browse files Browse the repository at this point in the history
  • Loading branch information
lihuanshuai committed Jul 16, 2024
1 parent 061bfac commit f12531c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/posts/numpy-array.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = 'Numpy 基础(一):数组'
tags = ['Python', 'Numpy']
tags = ['Python', 'Numpy', '科学计算']
date = 2024-07-03T23:32:34+08:00
draft = false

Expand Down Expand Up @@ -28,8 +28,8 @@ NumPy 的主要对象是同类多维数组(`ndarray`)。它是一个元素(通

$$
\begin{bmatrix}
1 & 0 & 0 \\
0 & 1 & 2 \\
1 & 0 & 0 \cr
0 & 1 & 2 \cr
\end{bmatrix}
$$

Expand Down

0 comments on commit f12531c

Please sign in to comment.