Skip to content

Commit 7413876

Browse files
hakkeltTamas Hakkel
and
Tamas Hakkel
authoredApr 11, 2024
Storage type (#23)
Co-authored-by: Tamas Hakkel <[email protected]>
1 parent 4dea8fb commit 7413876

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+468
-437
lines changed
 

‎Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "AbstractOperators"
22
uuid = "d9c5613a-d543-52d8-9afd-8f241a8c3f1c"
3-
version = "0.3"
3+
version = "0.4"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"

‎src/calculus/AdjointOperator.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export AdjointOperator
33
"""
44
`AdjointOperator(A::AbstractOperator)`
55
6-
Shorthand constructor:
6+
Shorthand constructor:
77
88
`'(A::AbstractOperator)`
99
@@ -19,7 +19,7 @@ julia> [DFT(10); DCT(10)]'
1919
"""
2020
struct AdjointOperator{T <: AbstractOperator} <: AbstractOperator
2121
A::T
22-
function AdjointOperator(A::T) where {T<:AbstractOperator}
22+
function AdjointOperator(A::T) where {T<:AbstractOperator}
2323
is_linear(A) == false && error("Cannot transpose a nonlinear operator. You might use `jacobian`")
2424
new{T}(A)
2525
end

0 commit comments

Comments
 (0)