You need all the temperature values. As a work around, set all the logKs to the 25 deg C value. Otherwise, you can set the non-25 deg C values to 0 and the interpolation should still provide the 25 deg C value.
Glenn
If the high and low temperatures, i.e. x_high and x_low in:
subroutine
Interpolate(x_high,x_low,x,y_high,y_low,y)...
if (dabs(x_high-x_low) < 1.d-10) theny = y_low
else