- bring FWM plots back to life!

- some dispersion plots with the great help of chatGPT :-D
This commit is contained in:
Silas Oettinghaus
2025-10-17 11:50:27 +02:00
parent 99898da519
commit 3ea6439947
13 changed files with 720 additions and 62 deletions

View File

@@ -588,14 +588,13 @@ classdef DBHandler < handle
return
catch ME
if attempt < maxFast
pause(1)
pause(0.1)
else
pause(10)
pause(1)
end
lastErr = ME;
end
end
pause(60)
error('Database fetch failed after %d attempts:\n%s', maxSlow, lastErr.getReport())
end