mnspy 0.9.22__py3-none-any.whl → 0.9.23__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mnspy/ra/303/255ces/raices.py +12 -8
- {mnspy-0.9.22.dist-info → mnspy-0.9.23.dist-info}/METADATA +1 -1
- {mnspy-0.9.22.dist-info → mnspy-0.9.23.dist-info}/RECORD +6 -6
- {mnspy-0.9.22.dist-info → mnspy-0.9.23.dist-info}/WHEEL +1 -1
- {mnspy-0.9.22.dist-info → mnspy-0.9.23.dist-info}/licenses/LICENSE +0 -0
- {mnspy-0.9.22.dist-info → mnspy-0.9.23.dist-info}/top_level.txt +0 -0
mnspy/ra/303/255ces/raices.py
CHANGED
|
@@ -280,15 +280,19 @@ class Raices:
|
|
|
280
280
|
else:
|
|
281
281
|
return False
|
|
282
282
|
elif self._error_tolerancia:
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
if abs(self._tabla['x_max'][-1]-self._tabla['x_min'][-1])/2.0 < self._tol:
|
|
288
|
-
self._converge = True
|
|
289
|
-
return True
|
|
290
|
-
else:
|
|
283
|
+
lon = len(self._tabla['x'])
|
|
284
|
+
if lon > 1:
|
|
285
|
+
if self._rango == (None, None):
|
|
286
|
+
print('El tipo de error ''t'' solo aplica a los métodos cerrados')
|
|
291
287
|
return False
|
|
288
|
+
else:
|
|
289
|
+
if abs(self._tabla['x_max'][-1]-self._tabla['x_min'][-1])/2.0 < self._tol:
|
|
290
|
+
self._converge = True
|
|
291
|
+
return True
|
|
292
|
+
else:
|
|
293
|
+
return False
|
|
294
|
+
else:
|
|
295
|
+
return False
|
|
292
296
|
else:
|
|
293
297
|
lon = len(self._tabla['x'])
|
|
294
298
|
if lon > 1:
|
|
@@ -59,12 +59,12 @@ mnspy/raíces/falsa_posicion.py,sha256=ZGEf1G_SQpBcJbziZ30LTIADR9U_N3YLTobPlE_Qw
|
|
|
59
59
|
mnspy/raíces/muller.py,sha256=y0XGJ1HCUnXbm5cHvdxBaH3o3ceRB2PBxVJogGAEkW0,5880
|
|
60
60
|
mnspy/raíces/newton_raphson.py,sha256=PEnAv6IDqyKIZ9v9htjCsMhfxgjIyuHA1TauhJxxvrk,6425
|
|
61
61
|
mnspy/raíces/punto_fijo.py,sha256=1bv4dPNo04GGpAdrJN3cqTShaqySQzy9GCti5V__aso,4628
|
|
62
|
-
mnspy/raíces/raices.py,sha256=
|
|
62
|
+
mnspy/raíces/raices.py,sha256=mPUf-jjuKQwnZPBnc7hQIatl_x-Ojz9xOhpbYImLuSU,18803
|
|
63
63
|
mnspy/raíces/secante.py,sha256=0SQt-og5W3yO_7QEF4AZt2IEp1G-b9HA3wbfyWHNjSo,5075
|
|
64
64
|
mnspy/raíces/secante_modificada.py,sha256=vUi54dGSpGRzZKqbr3LWNI3bmqHyAoXwnVkPdyGbHEQ,5099
|
|
65
65
|
mnspy/raíces/wegstein.py,sha256=PPP66unFOZ0HpHQLRBzQnnBwRCmlZENelonI4I5fRaM,5390
|
|
66
|
-
mnspy-0.9.
|
|
67
|
-
mnspy-0.9.
|
|
68
|
-
mnspy-0.9.
|
|
69
|
-
mnspy-0.9.
|
|
70
|
-
mnspy-0.9.
|
|
66
|
+
mnspy-0.9.23.dist-info/licenses/LICENSE,sha256=wd5I6QXFrp_ipRe4KbPQuhaab3abbCGIW48aOnUQxsg,1071
|
|
67
|
+
mnspy-0.9.23.dist-info/METADATA,sha256=1P-uj8X5akS6JVsxbWJdTyRK_5eIzTi4OIM0udi8Tlc,4641
|
|
68
|
+
mnspy-0.9.23.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
69
|
+
mnspy-0.9.23.dist-info/top_level.txt,sha256=fbooZdZwS41I8vFuAXnn5qL4_mfc1aPt_DM60ZpvtKE,6
|
|
70
|
+
mnspy-0.9.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|