changed value 1000 to be 10 consistent with the literatature and the other array initializations

This commit is contained in:
and0rsk 2019-04-17 15:09:57 -07:00
parent e84f801836
commit bb3348e62c

View File

@ -325,8 +325,8 @@
{
"data": {
"text/plain": [
"array([[1000. ],\n",
" [ 4.5]])"
"array([[10. ],\n",
" [ 4.5]])"
]
},
"execution_count": 5,
@ -335,7 +335,7 @@
}
],
"source": [
"x = np.array([[1000.0],\n",
"x = np.array([[10.0],\n",
" [4.5]])\n",
"x"
]