Skip to content

Commit 9157ee8

Browse files
Update src/c_transforms.jl
Co-Authored-By: dlfivefifty <[email protected]>
1 parent 98f1747 commit 9157ee8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c_transforms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ end
6666
CDisk2CxfPlan(n::Int) = CDisk2CxfPlan(c_plan_disk2cxf(n), n)
6767

6868
function *(C::CDisk2CxfPlan, A::Matrix{Float64})
69-
(size(A,1) == C.n+1 && size(A,2) == 4C.n-3) || throw(ArgumentError(A))
69+
(size(A,1) == C.n && size(A,2) == 4C.n-3) || throw(ArgumentError(A))
7070
B = copy(A)
7171
c_disk2cxf(C.plan, B)
7272
B

0 commit comments

Comments
 (0)