需要 C# 函数的帮助才能在数字范围之间平滑转换
我正在尝试编写一个函数:
输入:
源范围、源值、输出范围、曲线类型(线性、平滑)
输出:
输出是将“源值”转换为“输出范围”
根据曲线类型。
我希望我在这里说得有道理......
有什么想法吗?
谢谢。
I'm trying to write a function :
Input:
Source range, Source value, output range, curve type (Linear, smooth)
Output:
The output is the "source value" converted into the "output range"
according to the curve type.
I hope I am making sense here...
Any ideas ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 B 样条进行一些研究。我认为这些能够帮助你解决问题。或者分段多项式插值可能就足够了。查看“C 中的数值配方”以获取代码和示例。
Do some research into B-splines. I think those will be able to sort you out. Or maybe a piecewise polynomial interpolation will be sufficient. Check out "Numerical Recipes in C" for code and examples.