Skip to content

Commit

Permalink
Fix some typos in working-in-charts example. (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjeng committed Mar 23, 2024
1 parent dcbf7e2 commit 4c61daf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Fixed

* typographical errors in tutorials/working-in-charts.jl.
* several typographical errors in the docs
* unifies to use two backticks ``` `` ``` for math instead of ` $ ` further in the docs

Expand Down
4 changes: 2 additions & 2 deletions tutorials/working-in-charts.jl
Expand Up @@ -26,7 +26,7 @@ There are two conceptually different approaches to working on a manifold: workin
The first one, widespread in differential geometry textbooks, is based on defining an atlas on the manifold and performing computations in selected charts. This approach, while generic, is not ideally suitable in all circumstances. For example, working in charts that do not cover the entire manifold causes issues with having to switch charts when operating on a manifold.
The second one is beneficital, if there exist a representation of points and tangent vectors for a manifold, which allow for efficient closed-form formulas for standard functions like the exponential map or Riemannian distance in this representation. These computations are then chart-free. `Manifolds.jl` supports both approaches, although the chart-free approach is the main focus of the library.
The second one is beneficial if there exists a representation of points and tangent vectors for a manifold which allows for efficient closed-form formulas for standard functions like the exponential map or Riemannian distance in this representation. These computations are then chart-free. `Manifolds.jl` supports both approaches, although the chart-free approach is the main focus of the library.
In this tutorial we focsus on chart-based computation.
"""
Expand Down Expand Up @@ -228,7 +228,7 @@ begin
end

# ╔═╡ a941fd19-faf5-49d0-8f68-ae2fbe45130d
md" ### Solving the logairthmic map ODE"
md" ### Solving the logarithmic map ODE"

# ╔═╡ 922461b0-55a0-447b-b59d-cfff7b448858
if interactive
Expand Down
4 changes: 2 additions & 2 deletions tutorials/working-in-charts.qmd
Expand Up @@ -19,7 +19,7 @@ There are two conceptually different approaches to working on a manifold: workin

The first one, widespread in differential geometry textbooks, is based on defining an atlas on the manifold and performing computations in selected charts. This approach, while generic, is not ideally suitable in all circumstances. For example, working in charts that do not cover the entire manifold causes issues with having to switch charts when operating on a manifold.

The second one is beneficital, if there exist a representation of points and tangent vectors for a manifold, which allow for efficient closed-form formulas for standard functions like the exponential map or Riemannian distance in this representation. These computations are then chart-free. `Manifolds.jl` supports both approaches, although the chart-free approach is the main focus of the library.
The second one is beneficial if there exists a representation of points and tangent vectors for a manifold which allows for efficient closed-form formulas for standard functions like the exponential map or Riemannian distance in this representation. These computations are then chart-free. `Manifolds.jl` supports both approaches, although the chart-free approach is the main focus of the library.

In this tutorial we focus on chart-based computation.

Expand Down Expand Up @@ -156,7 +156,7 @@ geo = solve_for([θₚ, φₚ], [θₓ, φₓ], [θy, φy], t_end)(0.0:dt:t_end)

![fig-pt](working-in-charts/working-in-charts-transport.png)

### Solving the logairthmic map ODE
### Solving the logarithmic map ODE

```{julia}
θ₁=π/2
Expand Down

0 comments on commit 4c61daf

Please sign in to comment.