File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -600,12 +600,15 @@ mutable struct AdjointPlan{T,P<:Plan} <: Plan{T}
600
600
end
601
601
602
602
"""
603
+ p'
603
604
adjoint(p::Plan)
604
605
605
- Form the adjoint operator of an FFT plan. Returns a plan `p'` which performs the adjoint operation
606
+ Form the adjoint operator of an FFT plan. Returns a plan which performs the adjoint operation
606
607
the original plan. Note that this differs from the corresponding backwards plan in the case of real
607
608
FFTs due to the halving of one of the dimensions of the FFT output, as described in [`rfft`](@ref).
608
- Adjoint plans do not currently support `mul!`.
609
+
610
+ !!! note
611
+ Adjoint plans do not currently support `LinearAlgebra.mul!`.
609
612
"""
610
613
Base. adjoint (p:: Plan{T} ) where {T} = AdjointPlan {T, typeof(p)} (p)
611
614
Base. adjoint (p:: AdjointPlan ) = p. p
You can’t perform that action at this time.
0 commit comments