seems finished

This commit is contained in:
ti_mo
2026-05-24 21:10:00 +02:00
parent 0df0c5da43
commit 56c7a51411
11 changed files with 348 additions and 130 deletions
+13
View File
@@ -0,0 +1,13 @@
function plotSpectrogram(result, figure_id, p_dB_min, p_dB_max)
figure(figure_id);
imagesc(result.T, result.F, result.P_dB);
axis ij;
xlabel("Time [s]");
ylabel("Freq. [Hz]");
title("Spectrogram Trace " + figure_id + " / Channel " + result.channel);
cb = colorbar;
ylabel(cb, "Power [dB]");
clim([p_dB_min p_dB_max]);
% Optional:
% xlim([0 0.05]);
end