Ejercicios Pandas

parent 05d64b29
......@@ -1210,7 +1210,7 @@
" else:\n",
" A = np.array(A, dtype=np.float64)\n",
" n = len(A)\n",
" Inver = np.eye(3, dtype=np.float64)\n",
" Inver = np.eye(n, dtype=np.float64)\n",
" #Factorizacion L por eliminación de Gauss\n",
" for p in range(n-1):\n",
" if A[p,p] == 0: #Verifica que el pivote no sea cero\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment