T3Tangent.entries_transpose =========================== .. py:method:: t3toolbox.manifold.T3Tangent.entries_transpose(c, index, frame, sum_over_probes = False) :staticmethod: .. code-block:: python def entries_transpose( c: NDArray, # residual, shape=W+C index: NDArray, # int, shape=(d,)+W frame: bvf.T3Frame, sum_over_probes: bool = False, # True: sum the apply stack W (Gauss-Newton entries^T c) ) -> 'T3Tangent': Apply the transpose ``entries^T`` of :py:meth:`entries`: scatter ``c`` at ``index`` into a tangent. The adjoint of :py:meth:`entries` -- identical to :py:meth:`apply_transpose` with the up-index ``ξ̂`` from fiber slicing and unit apply-vectors ``e_{index}``. ``sum_over_probes`` as in :py:meth:`apply_transpose` (see *Batching & stacking* §11). .. seealso:: :py:obj:`entries`, :py:obj:`apply_transpose`