Skip to content

Commit

Permalink
WIP: perform outlier rejection algo from Carpino et al. (2003) during…
Browse files Browse the repository at this point in the history
… fit loop iterations
  • Loading branch information
PerezHz committed Jul 3, 2024
1 parent 2e0c684 commit 3f9063d
Show file tree
Hide file tree
Showing 6 changed files with 176 additions and 201 deletions.
2 changes: 1 addition & 1 deletion src/orbitdetermination/admissibleregion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ function _georangerates(coeffs::Vector{T}, ρ::S) where {T, S <: Real}
if d > 0
return [-sqrt(arG(coeffs, ρ)), sqrt(arG(coeffs, ρ))]
elseif d == 0
return zero(T) * arG(coeffs, ρ)
return zero(T) * [arG(coeffs, ρ)]
else
return Vector{T}(undef, 0)
end
Expand Down
Loading

0 comments on commit 3f9063d

Please sign in to comment.