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.
1 parent d1fbbca commit cd52268Copy full SHA for cd52268
src/calculus/Jacobian.jl
@@ -69,6 +69,8 @@ Jacobian(R::Reshape{N,L},x::AbstractArray) where {N,L} = Reshape(Jacobian(R.A,x)
69
#Jacobian of Sum
70
Jacobian(S::Sum{M,N,K,C,D},x::D) where {M,N,K,C,D} =
71
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
74
75
# Properties
76
0 commit comments