Merge pull request #292 from andorsk/ask/consistent_array_fix

changed array init to be consistent with material
This commit is contained in:
Roger Labbe 2020-04-26 21:56:03 -07:00 committed by GitHub
commit c3896494d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"
]