updated presets, but didnt test

This commit is contained in:
2025-05-29 19:53:40 +02:00
parent 8c2db47347
commit f04c657a7b
13 changed files with 107 additions and 215 deletions

View File

@ -5,26 +5,26 @@ function [outputArg] = plot_suspension_histogram(panel, start, stop, pltData)
ax1 = nexttile(tl);
hold(ax1, "on")
grid(ax1, "on")
title(ax1, "Heave Front [mm/s]")
histogram(ax1, pltData.velocityHeaveFront_mmps(start:stop),"Normalization","percentage")
title(ax1, "Front left [mm/s]")
histogram(ax1, pltData.velocity_FL_mmps(start:stop),"Normalization","percentage")
% plot 2: position roll front [mm/s]
ax2 = nexttile(tl);
hold(ax2, "on")
grid(ax2, "on")
title(ax2, "Roll Front [mm/s]")
histogram(ax2, pltData.velocityHeaveFront_mmps(start:stop),"Normalization","percentage")
title(ax2, "Front right [mm/s]")
histogram(ax2, pltData.velocity_FR_mmps(start:stop),"Normalization","percentage")
% plot 3: position heave front [mm/s]
ax3 = nexttile(tl);
hold(ax3, "on")
grid(ax3, "on")
title(ax3, "Heave Rear [mm/s]")
histogram(ax3, pltData.velocityHeaveFront_mmps(start:stop),"Normalization","percentage")
title(ax3, "Rear left [mm/s]")
histogram(ax3, pltData.velocity_RL_mmps(start:stop),"Normalization","percentage")
% plot 4: position roll front [mm/s]
ax4 = nexttile(tl);
hold(ax4, "on")
grid(ax4, "on")
title(ax4, "Roll Rear [mm/s]")
histogram(ax4, pltData.velocityHeaveFront_mmps(start:stop),"Normalization","percentage")
title(ax4, "Rear right [mm/s]")
histogram(ax4, pltData.velocity_RR_mmps(start:stop),"Normalization","percentage")
linkaxes([ax1, ax2, ax3, ax4],"x")
% return null (not relevant for plots!)