Skip to content

Commit

Permalink
Minor fix in OutlierRejectionCache
Browse files Browse the repository at this point in the history
  • Loading branch information
LuEdRaMo committed Oct 19, 2024
1 parent aa9e476 commit 0ae02fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/orbitdetermination/leastsquares/outlierrejection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct OutlierRejectionCache{T} <: AbstractLeastSquaresCache{T}
χ2s = Vector{T}(undef, L)
ξ = Vector{T}(undef, 2)
γ = zeros(T, 2, 2)
A = Matrix{T}(undef, 6, 2)
A = Matrix{T}(undef, get_numvars(), 2)
γ_ξ = Matrix{T}(undef, 2, 2)
return new{T}(mask, eval_res, χ2s, ξ, γ, A, γ_ξ, L)
end
Expand Down

0 comments on commit 0ae02fd

Please sign in to comment.