Esempio n. 1
0
        public void InterpolationTest()
        {
            double v1       = 20;
            double v2       = 100;
            double weightv1 = 50;
            double result   = WeatherSystem.InterpolateWeighedDouble(v1, v2, weightv1);

            weightv1 = 80;
            result   = WeatherSystem.InterpolateWeighedDouble(v1, v2, weightv1);
        }