Relative Humidity Sensor: 0.9V - 4.1V (0 - 100%) to 0 - 5V Channel

Relative Humidity Sensor: 0.9V - 4.1V (0 - 100%) to 0 - 5V Channel
Equation Description:
Input source range: 0.9 - 4.1 V from RH sensor
Data logger channel: 0 - 5 V
Equation Contents:
//A custom equation converting 0.9-4.1V input to 0 - 100% RH
public double RH100(double Input)
{
    double output;
    output = 100 * (Input - 0.9) / (4.1 - 0.9);
    return output;
}