Skip to content

Commit cd52268

Browse files
committed
small fix
1 parent d1fbbca commit cd52268

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/calculus/Jacobian.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ Jacobian(R::Reshape{N,L},x::AbstractArray) where {N,L} = Reshape(Jacobian(R.A,x)
6969
#Jacobian of Sum
7070
Jacobian(S::Sum{M,N,K,C,D},x::D) where {M,N,K,C,D} =
7171
Sum(([Jacobian(a,x) for a in S.A]...),S.bufC,S.bufD,M,N)
72+
#Jacobian of Transpose
73+
Jacobian(T::Transpose{A}, x::AbstractArray) where {A <: AbstractOperator} = T
7274

7375
# Properties
7476

0 commit comments

Comments
 (0)