mnspy 0.9.10__py3-none-any.whl → 0.9.11__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.
@@ -80,7 +80,8 @@ class Trapezoidal(Integral):
80
80
  """
81
81
  x = np.linspace(self._a, self._b, self._n + 1)
82
82
  y = self._f(x)
83
- plt.plot(x, y, 'o--', color='C2', lw=1)
83
+ plt.stem(x, y, linefmt='C2--', markerfmt='C0o', basefmt='C2-')
84
+ # plt.plot(x, y, 'o--', color='C2', lw=1)
84
85
  plt.fill_between(x, y, color='green', alpha=0.3, label='Regla del Trapecio')
85
86
  plt.title(r'$\int{f(x)}\approx ' + str(self.integral) + '$')
86
87
  self._graficar_datos()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mnspy
3
- Version: 0.9.10
3
+ Version: 0.9.11
4
4
  Summary: Paquete didáctico para métodos numéricos
5
5
  Home-page: https://github.com/EdwinSoft/mnspy
6
6
  Author: Edwin Córdoba
@@ -43,7 +43,7 @@ mnspy/integrales/integral.py,sha256=dxoqpI7BHSf8XV4wYWXqMi1rJQGQ67Q-MFE2k4Vb0NM,
43
43
  mnspy/integrales/romberg.py,sha256=DW28SQe26e10_DlPFz-cM8TyKRTNFmRvvLwvKHinaso,4296
44
44
  mnspy/integrales/simpson_1_3.py,sha256=kQFJVnuhvs150AbSqWVILPdmvXRAAtSw4zR7vkZb5x8,3435
45
45
  mnspy/integrales/simpson_3_8.py,sha256=JPMNEhRzCKl2DVUW_CtC2G5daP55BSZg4kX9L7NsGzU,3481
46
- mnspy/integrales/trapezoidal.py,sha256=IGjNFmBFZv0Lzh0kHPKx_tMPAkUgZutbgYt1SLqaJEU,2708
46
+ mnspy/integrales/trapezoidal.py,sha256=9ZN5ETPgMcQh0DzXTuTNhub70dfiwHEaiSe92apRf20,2781
47
47
  mnspy/integrales/trapezoidal_desigual.py,sha256=v06A_5mYRxiO-iu-Pd3gSCAAqV9bkih4ODU424S616Y,2861
48
48
  mnspy/integrales/trapezoidal_desigual_acumulado.py,sha256=6ASVgbLQ8Xdc7lEYTP3giwgvtgRHvlA8mel1MG42JE0,2967
49
49
  mnspy/interpolación/__init__.py,sha256=YNKs0uI-VhuYM5P3Ut7duVq9N3c7V1qcruYjhMjptQg,1122
@@ -63,8 +63,8 @@ mnspy/raíces/raices.py,sha256=lTjSOk84sg1VdlElmHaZSRen00zpt0jNrnFBx_SStnU,17510
63
63
  mnspy/raíces/secante.py,sha256=t8-NcN-Ki8BYrh3Cf3VUjaaRLxz6qV1v5i8johKBlZs,5220
64
64
  mnspy/raíces/secante_modificada.py,sha256=0bLgcG8K_O6Ras3vKBIQpUdDlB69tWKHbx_fE8-47SE,5105
65
65
  mnspy/raíces/wegstein.py,sha256=23HQ6QuelMNo8S8W1fzha8ozbcy_NdsjK5XLMaH-m38,5397
66
- mnspy-0.9.10.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
67
- mnspy-0.9.10.dist-info/METADATA,sha256=oUIcMt6CZDa0GnzytK9xEE2nkbO9x9Cjd8_zLZDNdvM,4439
68
- mnspy-0.9.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
- mnspy-0.9.10.dist-info/top_level.txt,sha256=fbooZdZwS41I8vFuAXnn5qL4_mfc1aPt_DM60ZpvtKE,6
70
- mnspy-0.9.10.dist-info/RECORD,,
66
+ mnspy-0.9.11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
67
+ mnspy-0.9.11.dist-info/METADATA,sha256=zD7QrE37o6dMdrqqo4qnzda8quXlnAYM-KA-TweKLho,4439
68
+ mnspy-0.9.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
+ mnspy-0.9.11.dist-info/top_level.txt,sha256=fbooZdZwS41I8vFuAXnn5qL4_mfc1aPt_DM60ZpvtKE,6
70
+ mnspy-0.9.11.dist-info/RECORD,,
File without changes