@@ -182,20 +182,6 @@ Orthogonality requires `InnerProductStyle(t) <: HasInnerProduct`, and
182182`InnerProductStyle(t) === EuclideanInnerProduct()`.
183183""" rightnull, rightnull!
184184
185- @doc """
186- leftpolar(t::AbstractTensorMap, [(leftind, rightind)::Index2Tuple]; kwargs...) -> W, P
187- leftpolar!(t::AbstractTensorMap; kwargs...) -> W, P
188-
189- Compute the polar decomposition of tensor `t` as linear map from `rightind` to `leftind`.
190-
191- If `leftind` and `rightind` are not specified, the current partition of left and right
192- indices of `t` is used. In that case, less memory is allocated if one allows the data in
193- `t` to be destroyed/overwritten, by using `eigh!(t)`.
194-
195- See also [`rightpolar(!)`](@ref rightpolar).
196-
197- """ leftpolar, leftpolar!
198-
199185@doc """
200186 eigen(t::AbstractTensorMap, [(leftind, rightind)::Index2Tuple]; kwargs...) -> D, V
201187 eigen!(t::AbstractTensorMap; kwargs...) -> D, V
@@ -230,7 +216,7 @@ meaningless.
230216""" isposdef (:: AbstractTensorMap ), isposdef! (:: AbstractTensorMap )
231217
232218for f in
233- (:tsvd , :eig , :eigh , :eigen , :leftorth , :rightorth , :leftpolar , :rightpolar , :leftnull ,
219+ (:tsvd , :eig , :eigh , :eigen , :leftorth , :rightorth , :left_polar , :right_polar , :leftnull ,
234220 :rightnull , :isposdef )
235221 f! = Symbol (f, :! )
236222 @eval function $f (t:: AbstractTensorMap , p:: Index2Tuple ; kwargs... )
0 commit comments