Interpolation ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ :py:mod:`UQpy` offers the capability to interpolate points on the Grassmann :math:`\mathcal{G}(p,n)`. Consider we have a set of :math:`n+1` points :math:`(t_0, \mathbf{X}_0), ..., (t_n, \mathbf{X}_n)`, with :math:`t_0 <...>> from UQpy.dimension_reduction.grassmann_manifold.GrassmannInterpolation import GrassmannInterpolation We must then instantiate a :class:`.GrassmannInterpolation` object and then invoke the :py:meth:`.interpolate_manifold` method as: >>> X = GrassmannInterpolation() >>> Y = X.interpolate_manifold(point) Methods ~~~~~~~~~~~~~~~~~~~ .. autoclass:: UQpy.dimension_reduction.GrassmannInterpolation :members: