Base Manifold Classes¶
Base classes for manifolds.
A Manifold is a stateless object that bundles operations for interpreting and manipulating flat JAX arrays of a fixed dimension. It holds no data itself — the arrays it operates on are passed in and returned as plain Array values. Subclasses add structure (array manipulation, matrix representations, exponential-family operations) while preserving this pattern.
Class Hierarchy¶
Manifold¶
- class Manifold[source]¶
Bases:
ABCA stateless bundle of dimension and array operations.
A
Manifolddeclares the length \(n\) of the flat arrays it works with and provides operations (initialization, coordinate access, geometric computations) that give those arrays meaning. Points on the manifold are plainArrayvalues — the manifold object interprets them but does not store them.Mathematically, a smooth manifold \(\mathcal M\) of dimension \(n\) is a topological space that is locally homeomorphic to \(\mathbb R^n\). A coordinate chart \((U, \phi)\) maps an open subset \(U \subseteq \mathcal M\) to \(\mathbb R^n\), and an atlas is a collection of charts covering \(\mathcal M\) with smooth transition maps on overlaps.