Skip to content

Commit 752bd61

Browse files
committed
update Readme
1 parent ed234db commit 752bd61

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The complete syntax of the ``DimensionDiagrams`` function is as follows.
3737
DimensionDiagrams(
3838
Ω::Array{T,2},
3939
projective::Bool;
40-
diagrams = [:CorrSum, :BoxCounting, :NPCA, :MLE, :ANOVA],
40+
diagrams = [:CorrSum, :BoxCounting, :NPCA, :MLE, :ANOVA, :PHCurve],
4141
eps_ticks = 25,
4242
fontsize = 16,
4343
lw = 4
@@ -53,8 +53,6 @@ There are some optional arguments.
5353
* `fontsize`: sets the font size of the axes.
5454
* `lw`: sets the line width.
5555

56-
#### Important: the PHCurve diagram is currently not available.
57-
5856

5957
## How to compute multivariate Vandermonde matrices
6058
Here is an example.
@@ -139,8 +137,6 @@ Here:
139137
* `exponents` is an array of exponent vectors.
140138
* `τ` is the tolerance value.
141139

142-
## Persistent homology
143-
This functionality is currently not avaible, until Eirene has been updated to Julia 1.0.
144140

145141
## Distances
146142
Computing distances is a key aspect in both dimension estimation and persistent homology. Here are the functions with which we compute distances.

src/estimate_dimension.jl

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ There are some optional arguments.
2222
* eps_ticks = k puts into k evenly spaces ϵ on [0,1] at which the dimension is computed.
2323
* fontsize sets the fontsize of the axes.
2424
* lw sets the linewidth.
25-
* log_log = true makes a plot in the log-log scale.
2625
"""
2726
function DimensionDiagrams(
2827
data::Array{T,2},

0 commit comments

Comments
 (0)