Convert resistance or voltage to temperature (PT100/PT1000, NTC, thermocouple).
Result [°C]
100.01 °C
Many sensors have a non-linear characteristic curve. Using support points (value pairs), the tool interpolates piecewise-linearly to derive the correct measurement from the raw signal.
Formula (interpolation)
y = y0 + (x - x0) * (y1 - y0) / (x1 - x0)
Example
Support points (0→0), (10→25), (20→100): input 15 lies in segment 10–20 → y = 25 + (15-10)*(100-25)/(20-10) = 62.5.
Notes