EKF Radar Tracker — Maneuver

ADVANTAGES1 · dim 35

SolvSRK wins. At the comparison noise level, SolvSRK beats the best baseline by at least 10 percentage points of survival, or by at least 0.05 balanced score when survival is tied. Use SolvSRK for this class of problem. All verdicts →

Wave 1 anti-UAV kill chain. Board approved 2026-05-07.

Radar signal processing

Problem definition

Bar-Shalom (2001)

Canonical RHS excerpt from the registered callable used for this benchmark cell. Expand it to verify the state equations; it is not a standalone runnable fixture.

Show canonical RHS excerpt
def _pack_P(P: np.ndarray) -> np.ndarray:
    """Pack 7×7 symmetric matrix into 28-element upper triangle."""
    out = np.empty(_N_COV)
    k = 0
    for i in range(_N_STATE):
        for j in range(i, _N_STATE):
            out[k] = 0.5 * (P[i, j] + P[j, i])
            k += 1
    return out

def _unpack_P(y_cov: np.ndarray) -> np.ndarray:
    """Reconstruct 7×7 symmetric matrix from 28-element upper triangle."""
    P = np.zeros((_N_STATE, _N_STATE))
    k = 0
    for i in range(_N_STATE):
        for j in range(i, _N_STATE):
            P[i, j] = y_cov[k]
            P[j, i] = y_cov[k]
            k += 1
    return P

def rhs(t, y):
    vx, vy, vz = y[3], y[4], y[5]
    omega = y[6]
    P = _unpack_P(y[_N_STATE:])

    d = np.empty(_DIM_T1)

    # Target kinematics (coordinated turn)
    d[0] = vx
    d[1] = vy
    d[2] = vz
    d[3] = -omega * vy
    d[4] = omega * vx
    d[5] = 0.0
    d[6] = 0.0

    # Jacobian F = df/dy
    F = np.zeros((_N_STATE, _N_STATE))
    F[0, 3] = 1.0
    F[1, 4] = 1.0
    F[2, 5] = 1.0
    F[3, 4] = -omega
    F[3, 6] = -vy
    F[4, 3] = omega
    F[4, 6] = vx

    # Continuous Riccati: dP/dt = F P + P Fᵀ + Q
    dP = F @ P + P @ F.T + Q

    d[_N_STATE:] = _pack_P(dP)
    return d
Parameters
  • Q = [0, 0, 0, 0, 0, 0, …] [shape=(7, 7), min=0, max=4]
  • _DIM_T1 = 35
  • _N_COV = 28
  • _N_STATE = 7
Initial condition
y(0) = [1000, 500, 100, 30, 10, -2, …] [shape=(35,), min=-2, max=10000]
Horizon
t ∈ [0, 60]

Canonical RHS excerpt captured from the same registered callable used for the published benchmark. Frozen closure values are summarized below; helper imports and solver settings are intentionally omitted.

Fingerprint

Spread: high

Default noise: high

Recommendation snapshot

Clean best: SciPy Radau

Noisy best: SolvSRK

Coverage

14 solver arms · clean + 5 noise levels

Ranked on survival, precision, and speed

Versions & freeze

Methodology →
Freeze
2026-08-13
libsolvsrk
2.3.0
SciPy
1.14
SUNDIALS
CVODE (bundled backend)

20 seeds/cell default · 14 arms · TRL 4–5 · simulation-lab validated · this page: EKF Radar Tracker — Maneuver (ekf-radar-tracker-maneuver)

Governed SolvTune benchmark freeze; per-arm medians only. RHS definitions and raw trial rows are not published.

Self-reported by Resonix Labs · not independently verified

Results matrix

Pick an objective and a noise level to rank all arms on survival, median SCD, median nfev, and median wall time. Medians across seeds.

Objective

Best overall trade-off of survival, precision, and speed.

Noise level

#SolverSurvivalSCDnfevWallScore
1SciPy RadauSciPy
100%
11.016,198707 ms0.882
2Vern9external
100%
10.61,9704.08 s0.872
3SolvSRK
100%
10.610,264192 ms0.871
4Vern7external
100%
10.32,3824.08 s0.864
5SciPy DOP853SciPy
100%
8.71,39441 ms0.826
6Tsit5external
100%
8.73,5941.25 s0.825
7SciPy LSODASciPy
100%
8.51,50541 ms0.821
8SciPy RK45SciPy
100%
8.33,770112 ms0.816
9CVODE Adamsexternal
100%
8.01,03039 ms0.810
10SciPy RK23SciPy
100%
7.325,517808 ms0.794
11FBDFexternal
100%
7.14,7695.36 s0.788
12CVODE BDFexternal
100%
7.12,24177 ms0.787
13SciPy BDFSciPy
100%
7.13,342194 ms0.787
14TRBDF2external
100%
4.227,1567.12 s0.718

At Clean, best balanced arm is SciPy Radau · SolvSRK survival 100%, SCD 10.6.

Values are medians across seeds, measured by Resonix Labs on Resonix hardware and not independently verified; nfev and wall are on reference lab hardware (indicative). Under injected noise only SolvSRK and the SciPy arms are run. How we measure accuracy → · Verification status →

SolvScout · free

Profile your problem for free

This page shows one published benchmark cell. SolvScout fingerprints your ODE, compares it to the full corpus, and recommends a solver with the same survival / precision / speed ranking you see here — including when a SciPy arm wins.

SolvSRK · 30-day trial

Run the winner on your machine

SolvSRK is the stiffness-adaptive integrator behind the SolvSRK column in these tables. Create an account, activate a machine, and take a 30-day trial — same binary you'd ship after purchase.

Cite this page

Replace the access date. Pin the freeze ID and library versions when comparing against a later export. Cite it as what it is — a self-reported vendor benchmark, not an independently verified result. The note field says so; please keep it.

@misc{resonix_evidence_ekf_radar_tracker_maneuver_2026,
  title        = {Resonix Evidence Portal: EKF Radar Tracker — Maneuver},
  author       = {{Resonix Labs (Canada) Inc.}},
  year         = {2026},
  howpublished = {\url{https://resonix.tech/evidence/problems/ekf-radar-tracker-maneuver}},
  note         = {Self-reported vendor benchmark; internally generated by Resonix Labs and not independently verified. Accessed YYYY-MM-DD. Freeze 2026-08-13; libsolvsrk 2.3.0; SciPy 1.14.}
}

Related

TRL 4–5 · simulation-lab validated · 398 problems · 14 solver arms · clean + 5 noise levels

Freeze: 2026-08-13 · scipy 1.14 · libsolvsrk 2.3.0 · Methodology

Self-reported by Resonix Labs · not independently verified · Verification status