Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Module 1/Getting Familiar with Numpy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@
"source": [
"# ====================== YOUR CODE HERE ======================\n",
"# Instructions: Generate a 3x3 Identity matrix using numpy\n",
...
np.identity(3)
...
" \n",
" \n",
" \n",
Expand Down Expand Up @@ -128,6 +131,10 @@
"source": [
"# ====================== YOUR CODE HERE ======================\n",
"# Instructions: Multiply theta transpose by X\n",
...
print(np.dot(theta.T,X))
...

" \n",
" \n",
" \n",
Expand Down