Skip to content

Commit

Permalink
Fix some typos in working-in-charts example.
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjeng committed Mar 15, 2024
1 parent dcbf7e2 commit e04b00f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tutorials/working-in-charts.jl
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 e04b00f

Please sign in to comment.