summaryrefslogtreecommitdiff
path: root/src/Persistence_representations/example/persistence_intervals.cpp
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-05-30 15:52:00 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-05-30 15:52:00 +0000
commit9d1a526de85694b5f075bb88dbd7097a40abf10a (patch)
treebbcd0cef32610d2f5e9c0209b48c58f73fbf379a /src/Persistence_representations/example/persistence_intervals.cpp
parent2bcb3d7cb47ce71803f2464cc822346ed2e1b039 (diff)
clang format all sources
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/persistence_representation_integration@2477 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 326d664483d6700f82be824f79a0bf5c082b4945
Diffstat (limited to 'src/Persistence_representations/example/persistence_intervals.cpp')
-rw-r--r--src/Persistence_representations/example/persistence_intervals.cpp138
1 files changed, 58 insertions, 80 deletions
diff --git a/src/Persistence_representations/example/persistence_intervals.cpp b/src/Persistence_representations/example/persistence_intervals.cpp
index 947c9627..69870744 100644
--- a/src/Persistence_representations/example/persistence_intervals.cpp
+++ b/src/Persistence_representations/example/persistence_intervals.cpp
@@ -20,92 +20,70 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
-
#include <gudhi/reader_utils.h>
#include <gudhi/Persistence_intervals.h>
#include <iostream>
-
-
using namespace Gudhi;
using namespace Gudhi::Persistence_representations;
-
-int main( int argc , char** argv )
-{
- if ( argc != 2 )
- {
- std::cout << "To run this program, please provide the name of a file with persistence diagram \n";
- return 1;
- }
-
- Persistence_intervals p( argv[1] );
- std::pair<double,double> min_max_ = p.get_x_range();
- std::cout << "Birth-death range : " << min_max_.first << " " << min_max_.second << std::endl;
-
-
- std::vector<double> dominant_ten_intervals_length = p.length_of_dominant_intervals(10);
- std::cout << "Length of ten dominant intervals : " <<std::endl;
- for ( size_t i = 0 ; i != dominant_ten_intervals_length.size() ; ++i )
- {
- std::cout << dominant_ten_intervals_length[i] <<std::endl;
- }
-
- std::vector< std::pair<double,double> > ten_dominant_intervals = p.dominant_intervals( 10 );
- std::cout << "Here are the dominant intervals : " <<std::endl;
- for ( size_t i = 0 ; i != ten_dominant_intervals.size() ; ++i )
- {
- std::cout << "( " << ten_dominant_intervals[i].first<< "," << ten_dominant_intervals[i].second <<std::endl;
- }
-
- std::vector< size_t > histogram = p.histogram_of_lengths( 10 );
- std::cout << "Here is the histogram of barcode's length : " <<std::endl;
- for ( size_t i = 0 ; i != histogram.size() ; ++i )
- {
- std::cout << histogram[i] << " ";
- }
- std::cout <<std::endl;
-
-
- std::vector< size_t > cumulative_histogram = p.cumulative_histogram_of_lengths( 10 );
- std::cout<< "Cumulative histogram : " <<std::endl;
- for ( size_t i = 0 ; i != cumulative_histogram.size() ; ++i )
- {
- std::cout << cumulative_histogram[i] << " ";
- }
- std::cout <<std::endl;
-
- std::vector< double > char_funct_diag = p.characteristic_function_of_diagram( min_max_.first , min_max_.second );
- std::cout << "Characteristic function of diagram : " <<std::endl;
- for ( size_t i = 0 ; i != char_funct_diag.size() ; ++i )
- {
- std::cout << char_funct_diag[i] << " ";
- }
- std::cout <<std::endl;
-
- std::vector< double > cumul_char_funct_diag = p.cumulative_characteristic_function_of_diagram( min_max_.first , min_max_.second );
- std::cout << "Cumulative characteristic function of diagram : " <<std::endl;
- for ( size_t i = 0 ; i != cumul_char_funct_diag.size() ; ++i )
- {
- std::cout << cumul_char_funct_diag[i] << " ";
- }
- std::cout <<std::endl;
-
- std::cout << "Persistence Betti numbers \n";
- std::vector< std::pair< double , size_t > > pbns = p.compute_persistent_betti_numbers();
- for ( size_t i = 0 ; i != pbns.size() ; ++i )
- {
- std::cout << pbns[i].first << " " << pbns[i].second <<std::endl;
- }
-
- return 0;
+int main(int argc, char** argv) {
+ if (argc != 2) {
+ std::cout << "To run this program, please provide the name of a file with persistence diagram \n";
+ return 1;
+ }
+
+ Persistence_intervals p(argv[1]);
+ std::pair<double, double> min_max_ = p.get_x_range();
+ std::cout << "Birth-death range : " << min_max_.first << " " << min_max_.second << std::endl;
+
+ std::vector<double> dominant_ten_intervals_length = p.length_of_dominant_intervals(10);
+ std::cout << "Length of ten dominant intervals : " << std::endl;
+ for (size_t i = 0; i != dominant_ten_intervals_length.size(); ++i) {
+ std::cout << dominant_ten_intervals_length[i] << std::endl;
+ }
+
+ std::vector<std::pair<double, double> > ten_dominant_intervals = p.dominant_intervals(10);
+ std::cout << "Here are the dominant intervals : " << std::endl;
+ for (size_t i = 0; i != ten_dominant_intervals.size(); ++i) {
+ std::cout << "( " << ten_dominant_intervals[i].first << "," << ten_dominant_intervals[i].second << std::endl;
+ }
+
+ std::vector<size_t> histogram = p.histogram_of_lengths(10);
+ std::cout << "Here is the histogram of barcode's length : " << std::endl;
+ for (size_t i = 0; i != histogram.size(); ++i) {
+ std::cout << histogram[i] << " ";
+ }
+ std::cout << std::endl;
+
+ std::vector<size_t> cumulative_histogram = p.cumulative_histogram_of_lengths(10);
+ std::cout << "Cumulative histogram : " << std::endl;
+ for (size_t i = 0; i != cumulative_histogram.size(); ++i) {
+ std::cout << cumulative_histogram[i] << " ";
+ }
+ std::cout << std::endl;
+
+ std::vector<double> char_funct_diag = p.characteristic_function_of_diagram(min_max_.first, min_max_.second);
+ std::cout << "Characteristic function of diagram : " << std::endl;
+ for (size_t i = 0; i != char_funct_diag.size(); ++i) {
+ std::cout << char_funct_diag[i] << " ";
+ }
+ std::cout << std::endl;
+
+ std::vector<double> cumul_char_funct_diag =
+ p.cumulative_characteristic_function_of_diagram(min_max_.first, min_max_.second);
+ std::cout << "Cumulative characteristic function of diagram : " << std::endl;
+ for (size_t i = 0; i != cumul_char_funct_diag.size(); ++i) {
+ std::cout << cumul_char_funct_diag[i] << " ";
+ }
+ std::cout << std::endl;
+
+ std::cout << "Persistence Betti numbers \n";
+ std::vector<std::pair<double, size_t> > pbns = p.compute_persistent_betti_numbers();
+ for (size_t i = 0; i != pbns.size(); ++i) {
+ std::cout << pbns[i].first << " " << pbns[i].second << std::endl;
+ }
+
+ return 0;
}
-
-
-
-
-
-
-