Extrapolate value from set of data
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Nicolò Dall'Acqua
am 5 Dez. 2022
Kommentiert: Nicolò Dall'Acqua
am 6 Dez. 2022
Hi all,
I am trying to estimate a series of impact velocities (g) for several drop tests performed on helmets. I have data for a series of tests at specific velocities (m/s), but I want to estimate impacts beyond the maximum velocity I have recorded.
The impact velocities in some cases are identical, since this is required in the test environment, but this is apparently not compatible with interpolation, as the sampling points must be different.
Could you please help me with this?
v = [146 158 159 182 177]; % peak linear acceleration recorded in [g]
x = [5.42 5.42 6.2 6.8 6.8]; % speed for tests in [m/s]
xq = [7.0 7.5 7.78 8 8.5 8.8]; % extrapolate the possible values of impacts at these speeds
extrap_imp = interp1(x,v,xq,'linear','extrap');
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 5 Dez. 2022
I would say the typical approach is to take the average of testing outputs for the same inputs.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Testing Frameworks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!