Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
brash99 committed Sep 3, 2020
1 parent 1a6736c commit 61fb5c8
Show file tree
Hide file tree
Showing 7 changed files with 226 additions and 220 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 6 additions & 1 deletion PythonBasic.ipynb → JupyterNotebooks/PythonBasic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 1,
"metadata": {},
"outputs": [
{
Expand All @@ -145,6 +145,7 @@
"Third element of first array: 3.0\n",
"Sum of two arrays: [0. 0. 0. 0. 0.]\n",
"Dot product of two arrays: -55.0\n",
"element by element multi. : [ -1. -4. -9. -16. -25.]\n",
"Now, some two dimensional stuff ... \n",
"A = [[1 2]\n",
" [3 4]] X = [5 6]\n",
Expand Down Expand Up @@ -189,6 +190,10 @@
"\n",
"print (\"Dot product of two arrays: \",dotProduct)\n",
"\n",
"myArray5 = myArray1*myArray2\n",
"\n",
"print (\"element by element multi. : \",myArray5)\n",
"\n",
"print (\"Now, some two dimensional stuff ... \")\n",
"\n",
"A = [[1,2],[3,4]]\n",
Expand Down
10 changes: 5 additions & 5 deletions root_find_basic.ipynb → JupyterNotebooks/root_find_basic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -14,7 +14,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -38,7 +38,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -49,7 +49,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 12,
"metadata": {},
"outputs": [
{
Expand All @@ -64,7 +64,7 @@
"\n",
"Total number of roots found = 3\n",
"\n",
"0.0031995773315429688\n"
"0.0025124549865722656\n"
]
}
],
Expand Down
215 changes: 215 additions & 0 deletions JupyterNotebooks/root_find_complete.ipynb

Large diffs are not rendered by default.

214 changes: 0 additions & 214 deletions root_find_complete.ipynb

This file was deleted.

0 comments on commit 61fb5c8

Please sign in to comment.