added missing SLS functions

This commit is contained in:
2025-09-23 15:55:13 +02:00
parent a259e3928e
commit 587c609542
7 changed files with 22 additions and 12 deletions

5
functions/SLS_RL.m Normal file
View File

@ -0,0 +1,5 @@
function [names, weg, kraft] = SLS_RL(voltage)
names = ["Weg_RL", "Kraft_RL"];
kraft = -40677.9661 * voltage + 93769.49153;
weg = -5.254237288 * voltage + 12.21355932;
end