TDCRPy 1.11.1__py3-none-any.whl → 1.11.2__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.
- {TDCRPy-1.11.1.dist-info → TDCRPy-1.11.2.dist-info}/METADATA +1 -1
- {TDCRPy-1.11.1.dist-info → TDCRPy-1.11.2.dist-info}/RECORD +6 -6
- tdcrpy/TDCR_model_lib.py +1 -1
- {TDCRPy-1.11.1.dist-info → TDCRPy-1.11.2.dist-info}/LICENCE.md +0 -0
- {TDCRPy-1.11.1.dist-info → TDCRPy-1.11.2.dist-info}/WHEEL +0 -0
- {TDCRPy-1.11.1.dist-info → TDCRPy-1.11.2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
tdcrpy/TDCRPy.py,sha256=kl0UM0HEY7D95M1c806IkYkXl7du1BMtWUA7jTiOGVs,53859
|
|
2
2
|
tdcrpy/TDCRPy1.py,sha256=QTBZh5B5JWnGB0BQfD-cFmwA9W080OD4sG-aj50-ejo,38106
|
|
3
|
-
tdcrpy/TDCR_model_lib.py,sha256
|
|
3
|
+
tdcrpy/TDCR_model_lib.py,sha256=VP85DYQC5yTzqiCvIZVnzJ5HCzA96EFxyEE93l6qjGE,105106
|
|
4
4
|
tdcrpy/TDCRoptimize.py,sha256=c2XIGveeLdVYYek4Rg6dygMvVA2xIrIkMb3L-_jUucM,6496
|
|
5
5
|
tdcrpy/__init__.py,sha256=vQslGLsoZPIceaitnSHOqN6lUdjEyJ3YhfJ6tYdXt-s,127
|
|
6
6
|
tdcrpy/config.toml,sha256=rHuuM520HZquGrEd8LAVUdvnzZGtk90pigudy-MXnm8,1389
|
|
@@ -1081,8 +1081,8 @@ tdcrpy/docs/_build/html/source/modules.html,sha256=Jf-qxVBId0UgpwyvYuyjtMNG-ezPO
|
|
|
1081
1081
|
tdcrpy/docs/_build/html/source/tdcrpy.html,sha256=-38lHMNFB22p1tWJEeN3yDqfDiCYE304vxDamO1-iRc,3779
|
|
1082
1082
|
tdcrpy/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1083
1083
|
tdcrpy/test/test_tdcrpy.py,sha256=MTMiE0N7RiyE8Rom2Yu8kCDR03pJga9D6_o7wr7leVA,4675
|
|
1084
|
-
TDCRPy-1.11.
|
|
1085
|
-
TDCRPy-1.11.
|
|
1086
|
-
TDCRPy-1.11.
|
|
1087
|
-
TDCRPy-1.11.
|
|
1088
|
-
TDCRPy-1.11.
|
|
1084
|
+
TDCRPy-1.11.2.dist-info/LICENCE.md,sha256=ZTpWyGU3qv_iwEpgvCijoCuCYpOPpyzJCgOk46WpUKU,1066
|
|
1085
|
+
TDCRPy-1.11.2.dist-info/METADATA,sha256=rVhvbCRVc6PtpHqOaB2ZLMQuwwKP1xbbkRZodEaRpEY,15996
|
|
1086
|
+
TDCRPy-1.11.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
1087
|
+
TDCRPy-1.11.2.dist-info/top_level.txt,sha256=f4vzFFcKSEnonAACs0ZXuRczmroLLqtPTqXFymU_VU0,14
|
|
1088
|
+
TDCRPy-1.11.2.dist-info/RECORD,,
|
tdcrpy/TDCR_model_lib.py
CHANGED
|
@@ -825,7 +825,7 @@ def readBetaShape(rad,mode,level,z=z_betashape,contH=True):
|
|
|
825
825
|
|
|
826
826
|
if contH: e=(np.asarray(e[:-1])+np.asarray(e[1:]))/2 # deal with the continuity hypothesis
|
|
827
827
|
p.pop(-1)
|
|
828
|
-
p /= sum(np.asarray(p)) # normalization
|
|
828
|
+
if contH: p /= sum(np.asarray(p)) # normalization
|
|
829
829
|
p = list(p); e = list(e)
|
|
830
830
|
return e, p
|
|
831
831
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|