summaryrefslogtreecommitdiff
path: root/src/Gudhi_stat/include/gudhi
diff options
context:
space:
mode:
authorpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-13 12:42:19 +0000
committerpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-04-13 12:42:19 +0000
commitaecf253b150fcaf0a9e2a41686de7dfea91fa4d8 (patch)
tree0a3d464cbf6015cfcf4af21719ae0679c170793b /src/Gudhi_stat/include/gudhi
parent8f4c961a93fe928d06c7776a9e8f5ecd00fab9ca (diff)
Answer to Vincent's comments. At the moment I need to discuss how to correct the doc. At the moment make doxygen generate some errors.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/gudhi_stat@2342 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 4bb5c3b30bca852045fb414eacf59936975a3855
Diffstat (limited to 'src/Gudhi_stat/include/gudhi')
-rw-r--r--src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape.h6
-rw-r--r--src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape_on_grid.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape.h b/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape.h
index 681f5d8d..925d784f 100644
--- a/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape.h
+++ b/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape.h
@@ -270,7 +270,7 @@ public:
}
/**
- *\private Computations of a L^i norm of landscape, where i is the input parameter.
+ *\private Computations of a \f$L^i\f$ norm of landscape, where i is the input parameter.
**/
double compute_norm_of_landscape( double i )
{
@@ -291,14 +291,14 @@ public:
double operator()(unsigned level,double x)const{return this->compute_value_at_a_given_point(level,x);}
/**
- *\private Computations of L^{\infty} distance between two landscapes.
+ *\private Computations of \f$L^{\infty}\f$ distance between two landscapes.
**/
friend double compute_max_norm_distance_of_landscapes( const Persistence_landscape& first, const Persistence_landscape& second );
//friend double compute_max_norm_distance_of_landscapes( const Persistence_landscape& first, const Persistence_landscape& second , unsigned& nrOfLand , double&x , double& y1, double& y2 );
/**
- *\private Computations of L^{p} distance between two landscapes. p is the parameter of the procedure.
+ *\private Computations of \f$L^{p}\f$ distance between two landscapes. p is the parameter of the procedure.
**/
friend double compute_distance_of_landscapes( const Persistence_landscape& first, const Persistence_landscape& second , double p );
diff --git a/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape_on_grid.h b/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape_on_grid.h
index 1f4cb3ff..3103172d 100644
--- a/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape_on_grid.h
+++ b/src/Gudhi_stat/include/gudhi/persistence_representations/Persistence_landscape_on_grid.h
@@ -595,7 +595,7 @@ public:
}
/**
- * Computations of a L^i norm of landscape, where i is the input parameter.
+ * Computations of a \f$L^i\f$ norm of landscape, where i is the input parameter.
**/
double compute_norm_of_landscape( double i )const
{
@@ -618,7 +618,7 @@ public:
double operator()(unsigned level,double x)const{return this->compute_value_at_a_given_point(level,x);}
/**
- * Computations of L^{\infty} distance between two landscapes.
+ * Computations of \f$L^{\infty}\f$ distance between two landscapes.
**/
friend double compute_max_norm_distance_of_landscapes( const Persistence_landscape_on_grid& first, const Persistence_landscape_on_grid& second );
//friend double compute_max_norm_distance_of_landscapes( const Persistence_landscape_on_grid& first, const Persistence_landscape_on_grid& second , unsigned& nrOfLand , double&x , double& y1, double& y2 );
@@ -765,7 +765,7 @@ public:
/**
- * Computations of L^{p} distance between two landscapes on a grid. p is the parameter of the procedure.
+ * Computations of \f$L^{p}\f$ distance between two landscapes on a grid. p is the parameter of the procedure.
* FIXME: Note that, due to the grid representation, the method below may give non--accurate results in case when the landscape P and Q the difference of which we want to compute
* are interxsecting. This is a consequence of a general way they are computed. In the future, an integral of absolute value of a difference of P and Q will be given as a separated
* function to fix that inaccuracy.