How to interpolate values given a starting and end point
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Bradley
am 14 Jun. 2024
Verschoben: Voss
am 14 Jun. 2024
I have a voltmeter that I was using to measure voltage on a battery, unfortunatly it wasnt working properly and Im not able to do the test again. Before and after I ran the test I tested the voltage, so I know the real starting (50.6V) and ending (50.3V). My voltmeter recorded the power draw correctly but the values are off, they hover around 18V, how do I interpolate the bad values with a known starting and end point?
Example:
I know its 50.6 to 50.3 and my recordings are 18.2 to 17.9
I want the readings to be 50.6, 50.5, 50.4, 50.3 instead of 18.2, 18.1, 18.0, 17.9. I cant just add the difference because power draw wasnt exactly linear so Im trying to use the interp1 function but it isnt working for me. Thanks!
1 Kommentar
Akzeptierte Antwort
Star Strider
am 14 Jun. 2024
Vrec = [18.2, 18.1, 18.0, 17.9];
Vrange = [50.6 50.3];
Vres = rescale(Vrec, Vrange(2), Vrange(1))
.
2 Kommentare
Weitere Antworten (1)
John D'Errico
am 14 Jun. 2024
If you ONLY have two data points, the only possible interpolation is LINEAR. There is no fancy method to interpolate in a nonlinear way. Interp1 cannot help you.
Caveat: You could perform a sort of exponential interpolation, so a nonlinear interpolant. Effectively, that means you might take the log of your data, then use linear interpolation, then use exp to back out the logs.
As far as why interp1 was not working for you, we cannot guess, because we do not see what you did with interp1, how you called it. We cannot see into your computer, or read your mind.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Outputs 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!