We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
transpose
adjoint
1 parent c892f47 commit 64e5be1Copy full SHA for 64e5be1
src/adjtrans.jl
@@ -555,10 +555,6 @@ end
555
556
# Special adjoint/transpose methods for Adjoint/Transpose that have been reshaped as a vector
557
# these are used in transposing banded matrices by forwarding the operation to the bands
558
-# the permutedims converts a n-element vector to an 1xn matrix
559
-transpose(A::Base.ReshapedArray{<:Any,1,<:TransposeAbsVec}) = permutedims(transpose(parent(A)))
560
-adjoint(A::Base.ReshapedArray{<:Any,1,<:AdjointAbsVec}) = permutedims(adjoint(parent(A)))
561
-
562
# compute vec(transpose(A)), but avoid an allocating reshape if possible
563
_vectranspose(A::AbstractVector) = vec(transpose(A))
564
_vectranspose(A::Base.ReshapedArray{<:Any,1,<:TransposeAbsVec}) = transpose(parent(A))
0 commit comments