From d32440d3014ce57266af571a3383e934dc0714f5 Mon Sep 17 00:00:00 2001 From: Uwe Fechner Date: Wed, 4 Sep 2024 17:11:14 +0200 Subject: [PATCH] improve plots --- test/test_lower_force1.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_lower_force1.jl b/test/test_lower_force1.jl index dd4d9424..68b30e08 100644 --- a/test/test_lower_force1.jl +++ b/test/test_lower_force1.jl @@ -53,7 +53,7 @@ for i in 1:SAMPLES end on_timer(lfc) end -display(plot(time, ACC, fig="acc")) -display(plot(time, D_F_ERR, fig="d(f_err)")) -display(plot(time, [V_RO, V_SET], fig="v_ro")) +display(plot(time, ACC; xlabel="Time [s]", ylabel="ACC", fig="acc")) +display(plot(time, D_F_ERR; xlabel="Time [s]", ylabel="D_F_ERR", fig="d(f_err)")) +display(plot(time, [V_RO, V_SET]; xlabel="Time [s]", ylabel="v_ro [m/s]", labels=["V_RO", "V_SET"], fig="v_ro"))