Centered matrices

Manifolds.CenteredMatrices โ€” Type
CenteredMatrices{m,n,๐”ฝ} <: AbstractEmbeddedManifold{๐”ฝ,TransparentIsometricEmbedding}

The manifold of $m ร— n$ real-valued or complex-valued matrices whose columns sum to zero, i.e.

\[\bigl\{ p โˆˆ ๐”ฝ^{m ร— n}\ \big|\ [1 โ€ฆ 1] * p = [0 โ€ฆ 0] \bigr\},\]

where $๐”ฝ โˆˆ \{โ„,โ„‚\}$.

Constructor

CenteredMatrices(m, n[, field=โ„])

Generate the manifold of m-by-n (field-valued) matrices whose columns sum to zero.

source
ManifoldsBase.check_manifold_point โ€” Method
check_manifold_point(M::CenteredMatrices{m,n,๐”ฝ}, p; kwargs...)

Check whether the matrix is a valid point on the CenteredMatrices M, i.e. is an m-by-n matrix whose columns sum to zero.

The tolerance for the column sums of p can be set using kwargs....

source
ManifoldsBase.check_tangent_vector โ€” Method
check_tangent_vector(M::CenteredMatrices{m,n,๐”ฝ}, p, X; check_base_point = true, kwargs... )

Check whether X is a tangent vector to manifold point p on the CenteredMatrices M, i.e. that X is a matrix of size (m,n) whose columns sum to zero and its values are from the correct AbstractNumbers. The optional parameter check_base_point indicates, whether to call check_manifold_point for p. The tolerance for the column sums of p and X can be set using kwargs....

source
ManifoldsBase.manifold_dimension โ€” Method
manifold_dimension(M::CenteredMatrices{m,n,๐”ฝ})

Return the manifold dimension of the CenteredMatrices m-by-n matrix M over the number system ๐”ฝ, i.e.

\[\dim(\mathcal M) = (m*n - n) \dim_โ„ ๐”ฝ,\]

where $\dim_โ„ ๐”ฝ$ is the real_dimension of ๐”ฝ.

source
ManifoldsBase.project โ€” Method
project(M::CenteredMatrices, p, X)

Project the matrix X onto the tangent space at p on the CenteredMatrices M, i.e.

\[\operatorname{proj}_p(X) = X - \begin{bmatrix} 1\\ โ‹ฎ\\ 1 \end{bmatrix} * [c_1 \dots c_n],\]

where $c_i = \frac{1}{m}\sum_{j=1}^m x_{j,i}$ for $i = 1, \dots, n$.

source
ManifoldsBase.project โ€” Method
project(M::CenteredMatrices, p)

Projects p from the embedding onto the CenteredMatrices M, i.e.

\[\operatorname{proj}_{\mathcal M}(p) = p - \begin{bmatrix} 1\\ โ‹ฎ\\ 1 \end{bmatrix} * [c_1 \dots c_n],\]

where $c_i = \frac{1}{m}\sum_{j=1}^m p_{j,i}$ for $i = 1, \dots, n$.

source