Skip to content

Commit

Permalink
attempt to fix docs bug fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGibbs committed Dec 8, 2023
1 parent dd8667c commit 43ac36d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/makeIFS.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This is the IFS for the Cantor Set, and this can be converted into an ```Invaria
The outer constructor for ```InvariantMeasure``` constructs other properties, such as diameter and Hausdorff dimension, which describe this fractal measure.

The full type is described below:
```@docs
```@docs
InvariantMeasure
```

Expand Down
6 changes: 3 additions & 3 deletions src/fractals.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ abstract type SelfSimilarFractal{V,M}<:FractalMeasure{V,M} end
end
Representation of a invariant measure, whose support is an iterated function system (IFS).
Constructor requires only an IFS, which is of type Array{Similarity}.
Constructor requires only an IFS, which is of type ```Array{Similarity}```.
All other essential properties can be deduced from this, including barycentre, diameter
and dimension, which are approximated numerically.
Has the outer constructor, which only requires IFS (a vector of [`Similarity``](@ref)) as an input.
Has the outer constructor, which only requires IFS (a vector of [`Similarity`](@ref)) as an input.
InvariantMeasure(sims::Vector{Similarity}; measure::Real=1.0) =
InvariantMeasure(sims, get_diameter(sims); measure=measure)
Expand All @@ -88,7 +88,7 @@ Has the outer constructor, which only requires IFS (a vector of [`Similarity``](
- weights: The probability weights describing the invariant measure
- disjoint: Flag for if the fractal support is disjoint
- connectedness: Matrix describing which subcomponents are connected
- symmetry_group: Vector of [`AutomorphicMap`](@ref), describing symmetries of the measure
- symmetry_group: Vector of ```AutomorphicMap```, describing symmetries of the measure
"""
struct InvariantMeasure{V,M} <: SelfSimilarFractal{V,M}
IFS::Vector{Similarity{V,M}}
Expand Down

0 comments on commit 43ac36d

Please sign in to comment.