-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Special) Orthogonal / Unitary / Euclidean groups (#17)
* Initial commit. * Start SE(n). * start (S)U(n) * start (S)O(n) * implement a generic semidirect product Lie group --------- Co-authored-by: Mateusz Baran <[email protected]>
- Loading branch information
1 parent
e43ad02
commit 5e478f3
Showing
63 changed files
with
4,801 additions
and
875 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,29 @@ | ||
name = "LieGroups" | ||
uuid = "6774de46-80ba-43f8-ba42-e41071ccfc5f" | ||
authors = ["Seth Axen <[email protected]>", "Mateusz Baran <[email protected]>", "Ronny Bergmann <[email protected]>", "Yueh-Hua Tu", "Olivier Verdier <[email protected]>"] | ||
version = "0.1.0" | ||
version = "0.0.3" | ||
|
||
[deps] | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
Manifolds = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e" | ||
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
|
||
[weakdeps] | ||
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" | ||
|
||
[extensions] | ||
LieGroupsRecursiveArrayToolsExt = "RecursiveArrayTools" | ||
|
||
[compat] | ||
Aqua = "0.8" | ||
LinearAlgebra = "1.10" | ||
Manifolds = "0.10.11" | ||
ManifoldsBase = "0.15.20" | ||
Manifolds = "0.10.13" | ||
ManifoldsBase = "1" | ||
Random = "1.10" | ||
RecursiveArrayTools = "2, 3" | ||
StaticArrays = "1.5" | ||
Test = "1.10" | ||
julia = "1.10" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
a[href^="https://juliamanifolds.github.io/ManifoldsBase.jl/"]::before { | ||
content: ""; | ||
background-image: url('logo-manifoldsbase.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
a[href^="https://juliamanifolds.github.io/Manifolds.jl/"]::before { | ||
content: ""; | ||
background-image: url('logo-manifolds.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
a[href^="https://manoptjl.org/"]::before { | ||
content: ""; | ||
background-image: url('logo-manopt.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
a[href^="https://en.wikipedia.org/"]::before { | ||
content: ""; | ||
background-image: url('wikipedia.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
display: inline-block; | ||
height: 1em; | ||
width: 1em; | ||
margin-right: 4px; | ||
vertical-align: middle; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
a[href^="https://juliamanifolds.github.io/ManifoldsBase.jl/"]::before { | ||
background-image: url('logo-manifoldsbase-dark.png'); | ||
} | ||
a[href^="https://juliamanifolds.github.io/Manifolds.jl/"]::before { | ||
background-image: url('logo-manifolds-dark.png'); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# The orthogonal group | ||
|
||
```@docs | ||
OrthogonalGroup | ||
``` | ||
|
||
For this Lie group, several implementations are already covered by the defaults in [the generic (matrix) multiplication operation](@ref multiplication-operation-sec). | ||
|
||
# Functions | ||
|
||
```@autodocs | ||
Modules = [LieGroups] | ||
Pages = ["groups/orthogonal_group.jl"] | ||
Order = [:function] | ||
``` | ||
|
||
# Utility functions | ||
|
||
```@docs | ||
LieGroups.angles_4d_skew_sym_matrix | ||
LieGroups.cos_angles_4d_rotation_matrix | ||
LieGroups.log_safe! | ||
LieGroups.usinc_from_cos | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# The special Euclidean group | ||
|
||
```@docs | ||
SpecialEuclideanGroup | ||
``` | ||
|
||
# Representation of points and tangent vectors | ||
|
||
```@docs | ||
SpecialEuclideanMatrixPoint | ||
SpecialEuclideanMatrixTangentVector | ||
SpecialEuclideanProductPoint | ||
SpecialEuclideanProductTangentVector | ||
``` | ||
|
||
# Specific functions | ||
|
||
```@autodocs | ||
Modules = [LieGroups] | ||
Pages = ["groups/special_euclidean_group.jl"] | ||
Order = [:function] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# The special orthogonal group | ||
|
||
```@docs | ||
SpecialOrthogonalGroup | ||
``` | ||
|
||
For this Lie group, several implementations are already covered by the defaults in [the generic (matrix) multiplication operation](@ref multiplication-operation-sec). | ||
|
||
# Functions | ||
|
||
```@autodocs | ||
Modules = [LieGroups] | ||
Pages = ["groups/special_orthogonal_group.jl"] | ||
Order = [:function] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# The special unitary group | ||
|
||
```@docs | ||
SpecialUnitaryGroup | ||
``` | ||
|
||
For this Lie group, several implementations are already covered by the defaults in [the generic (matrix) multiplication operation](@ref multiplication-operation-sec). |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# The unitary group | ||
|
||
```@docs | ||
UnitaryGroup | ||
``` | ||
|
||
For this Lie group, several implementations are already covered by the defaults in [the generic (matrix) multiplication operation](@ref multiplication-operation-sec). Besides that the following methods are implemented: | ||
|
||
```@autodocs | ||
Modules = [LieGroups] | ||
Pages = ["groups/unitary.jl"] | ||
Order = [:function] | ||
``` | ||
|
||
# Utility functions and constants | ||
|
||
```@docs | ||
LieGroups.CommonUnitarySubGroup | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
5e478f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Release notes:
This is a first small breaking release towards integrating a new LieGroups package into the JuliaManifolds ecosystem
5e478f3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/125416
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: