Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 902886a

Browse files
author
craigsdennis
committed
Adds linear algebra reflection notes
1 parent 01b7a2b commit 902886a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

‎Introduction to NumPy.ipynb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,6 +1474,18 @@
14741474
"np.ravel?\n"
14751475
]
14761476
},
1477+
{
1478+
"cell_type": "markdown",
1479+
"metadata": {},
1480+
"source": [
1481+
"## Linear Algebra\n",
1482+
"* There is a module for linear algebra, [linalg](https://docs.scipy.org/doc/numpy/reference/routines.linalg.html)\n",
1483+
"* You can solve for a system of equations using the [solve function](https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.solve.html#numpy.linalg.solve)\n",
1484+
" * You can create a square 2 dimensional matrix and a constant row vector and solve for each variable column\n",
1485+
" * You can double check the answer using the inner product or [dot](https://docs.scipy.org/doc/numpy/reference/generated/numpy.dot.html#numpy.dot).\n",
1486+
"* You can use the `@` to produce the dot product of two arrays."
1487+
]
1488+
},
14771489
{
14781490
"cell_type": "code",
14791491
"execution_count": 71,

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /