07: Remove unneeded random matrix and vector

This commit is contained in:
2022-02-17 12:58:30 +01:00
parent f5ff90cb80
commit b5c643c441

View File

@ -109,14 +109,7 @@
} }
], ],
"source": [ "source": [
"import numpy as np\n", "import numpy as np"
"\n",
"# We'll generate a random matrix, but for now we're unsure whether it results in a\n",
"# solvable system.\n",
"n = 6\n",
"A = 7*(np.random.rand(n,n) - .5)\n",
"b = 13*(np.random.rand(n) - .5)\n",
"A"
] ]
}, },
{ {