summaryrefslogtreecommitdiff
path: root/src/python/gudhi/reader_utils.pyx
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2020-01-04 12:50:14 +0100
committerMarc Glisse <marc.glisse@inria.fr>2020-01-04 12:50:14 +0100
commitbcc49c54943e20b117a3a83579d94f6c1b0efd04 (patch)
tree8ba6e8f8066226658ec9ee3edd1a902af964bdb5 /src/python/gudhi/reader_utils.pyx
parent1a9c2e7e25751ec2399bf12d086d7e2113c02faf (diff)
Link the doc for subsampling & point file readers, some reorg
Diffstat (limited to 'src/python/gudhi/reader_utils.pyx')
-rw-r--r--src/python/gudhi/reader_utils.pyx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/gudhi/reader_utils.pyx b/src/python/gudhi/reader_utils.pyx
index 6994c4f9..5a756e4b 100644
--- a/src/python/gudhi/reader_utils.pyx
+++ b/src/python/gudhi/reader_utils.pyx
@@ -34,7 +34,7 @@ def read_lower_triangular_matrix_from_csv_file(csv_file='', separator=';'):
:type separator: char
:returns: The lower triangular matrix.
- :rtype: vector[vector[double]]
+ :rtype: list(list(float))
"""
if csv_file:
if path.isfile(csv_file):
@@ -45,7 +45,7 @@ def read_lower_triangular_matrix_from_csv_file(csv_file='', separator=';'):
def read_persistence_intervals_grouped_by_dimension(persistence_file=''):
"""Reads a file containing persistence intervals.
Each line might contain 2, 3 or 4 values: [[field] dimension] birth death
- The return value is an `map[dim, vector[pair[birth, death]]]`
+ The return value is a `dict(dim, list(tuple(birth, death)))`
where `dim` is an `int`, `birth` a `double`, and `death` a `double`.
Note: the function does not check that birth <= death.
@@ -53,7 +53,7 @@ def read_persistence_intervals_grouped_by_dimension(persistence_file=''):
:type persistence_file: string
:returns: The persistence pairs grouped by dimension.
- :rtype: map[int, vector[pair[double, double]]]
+ :rtype: dict(int, list(tuple(float, float)))
"""
if persistence_file:
if path.isfile(persistence_file):