Class for the Euclidean Metric on the Manifold of Symmetric Positive Definite Matrices
Source:R/spd-metric-euclidean.R
SPDMetricEuclidean.Rd
An R6::R6Class object implementing the SPDMetricEuclidean
class. This is the class for the Euclidean metric on the SPD manifold.
Super classes
rgeomstats::PythonClass
-> rgeomstats::Connection
-> rgeomstats::RiemannianMetric
-> SPDMetricEuclidean
Public fields
n
An integer value specifying the shape of the matrices: \(n \times n\).
power_euclidean
An integer value specifying the power transformation of the classical SPD metric.
Methods
Inherited methods
rgeomstats::PythonClass$get_python_class()
rgeomstats::PythonClass$set_python_class()
rgeomstats::Connection$christoffels()
rgeomstats::Connection$curvature()
rgeomstats::Connection$curvature_derivative()
rgeomstats::Connection$directional_curvature()
rgeomstats::Connection$directional_curvature_derivative()
rgeomstats::Connection$exp()
rgeomstats::Connection$geodesic()
rgeomstats::Connection$geodesic_equation()
rgeomstats::Connection$injectivity_radius()
rgeomstats::Connection$ladder_parallel_transport()
rgeomstats::Connection$log()
rgeomstats::Connection$parallel_transport()
rgeomstats::RiemannianMetric$closest_neighbor_index()
rgeomstats::RiemannianMetric$cometric_matrix()
rgeomstats::RiemannianMetric$diameter()
rgeomstats::RiemannianMetric$dist()
rgeomstats::RiemannianMetric$dist_broadcast()
rgeomstats::RiemannianMetric$dist_pairwise()
rgeomstats::RiemannianMetric$hamiltonian()
rgeomstats::RiemannianMetric$inner_coproduct()
rgeomstats::RiemannianMetric$inner_product()
rgeomstats::RiemannianMetric$inner_product_derivative_matrix()
rgeomstats::RiemannianMetric$metric_matrix()
rgeomstats::RiemannianMetric$norm()
rgeomstats::RiemannianMetric$normal_basis()
rgeomstats::RiemannianMetric$normalize()
rgeomstats::RiemannianMetric$random_unit_tangent_vec()
rgeomstats::RiemannianMetric$sectional_curvature()
rgeomstats::RiemannianMetric$squared_dist()
rgeomstats::RiemannianMetric$squared_norm()
Method new()
The SPDMetricEuclidean
class constructor.
Usage
SPDMetricEuclidean$new(n, power_euclidean = 1, py_cls = NULL)
Arguments
n
An integer value specifying the shape of the matrices: \(n \times n\).
power_euclidean
An integer value specifying the power transformation of the classical SPD metric. Defaults to
1L
.py_cls
A Python object of class
SPDMetricEuclidean
. Defaults toNULL
in which case it is instantiated on the fly using the other input arguments.