Searched refs:inputLevels (Results 1 – 3 of 3) sorted by relevance
17 double interpolationFactor(const Range<double>& inputLevels, const double input) const { in interpolationFactor() argument20 static_cast<float>(inputLevels.min), in interpolationFactor()21 static_cast<float>(inputLevels.max) in interpolationFactor()35 double interpolationFactor(const Range<double>& inputLevels, const double input) const { in interpolationFactor() argument36 return ub.solve(input / (inputLevels.max - inputLevels.min), 1e-6); in interpolationFactor()
47 double interpolationFactor(const Range<double>& inputLevels, const double inputValue) const { in interpolationFactor() argument49 [&](const auto& interp) { return interp.interpolationFactor(inputLevels, inputValue); } in interpolationFactor()
61 float interpolationFactor(const Range<float>& inputLevels, const float inputValue) const { in interpolationFactor() argument68 … return z->interpolationFactor(Range<double> { inputLevels.min, inputLevels.max }, inputValue); in interpolationFactor()