new app2: changed the way data is stored and accessed, better gui, added data manipulation via external functions

This commit is contained in:
2025-07-21 13:27:44 +02:00
parent bc3890b713
commit 4c6deca018
4 changed files with 26 additions and 0 deletions

5
functions/SLS_FL.m Normal file
View File

@ -0,0 +1,5 @@
function [names, weg, kraft] = SLS_FL(voltage)
names = ["Weg_FL", "Kraft_FL"];
kraft = (voltage/1000 - (2.073 - 200 * (-0.104/1800)))/(-0.104/1800);
weg = (voltage/1000 - (1.969 - 0.38 * (-0.111/0.38)))/(-0.111/0.38);
end