The raw data is in the format millivolts milliwatts
. Milliwatts is rounded to integer (probably floor). It is the sum of 8 independent calculations with different scaling constants that add up to 130, which are rounded independently, but the inner function is known to be independent of that constant. So you can treat it as a single calculation, with an 8 mW error range for the values (since it is rounded 8 times before adding). There is a constant offset that adds up to around 414 mW (plus error) due to core power which I cannot eliminate from the testing matrix.
Current is probably calculated separately from voltage, so the expected form is:
Equivalently,
milliwatts = 414 + millivolts * 130 * f(millivolts / 1000)
Your job is to find