mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
21 lines
534 B
C++
21 lines
534 B
C++
#pragma once
|
|
|
|
#include <cmath>
|
|
|
|
|
|
inline double interpolateLinear(double min, double max, double ratio)
|
|
{
|
|
return min + (max - min) * ratio;
|
|
}
|
|
|
|
|
|
/** It is linear interpolation in logarithmic coordinates.
|
|
* Exponential interpolation is related to linear interpolation
|
|
* exactly in same way as geometric mean is related to arithmetic mean.
|
|
* 'min' must be greater than zero, 'ratio' must be from 0 to 1.
|
|
*/
|
|
inline double interpolateExponential(double min, double max, double ratio)
|
|
{
|
|
return min * std::pow(max / min, ratio);
|
|
}
|