Skip to content

Commit bd9fb0f

Browse files
committed
2D matrix
1 parent 5e63e00 commit bd9fb0f

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

NumPy.ipynb

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
{
3131
"cell_type": "code",
32-
"execution_count": 8,
32+
"execution_count": 12,
3333
"metadata": {},
3434
"outputs": [
3535
{
@@ -38,7 +38,7 @@
3838
"array([1, 2, 3])"
3939
]
4040
},
41-
"execution_count": 8,
41+
"execution_count": 12,
4242
"metadata": {},
4343
"output_type": "execute_result"
4444
}
@@ -58,7 +58,7 @@
5858
},
5959
{
6060
"cell_type": "code",
61-
"execution_count": 11,
61+
"execution_count": 13,
6262
"metadata": {},
6363
"outputs": [
6464
{
@@ -69,14 +69,34 @@
6969
" [7, 8, 9]])"
7070
]
7171
},
72-
"execution_count": 11,
72+
"execution_count": 13,
7373
"metadata": {},
7474
"output_type": "execute_result"
7575
}
7676
],
7777
"source": [
7878
"np.array(mat)"
7979
]
80+
},
81+
{
82+
"cell_type": "code",
83+
"execution_count": 18,
84+
"metadata": {},
85+
"outputs": [
86+
{
87+
"data": {
88+
"text/plain": [
89+
"array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])"
90+
]
91+
},
92+
"execution_count": 18,
93+
"metadata": {},
94+
"output_type": "execute_result"
95+
}
96+
],
97+
"source": [
98+
"np.arange(0,10)"
99+
]
80100
}
81101
],
82102
"metadata": {

0 commit comments

Comments
 (0)