Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个可以将带有坐标的数据点转换为栅格数据的 Java 库。或者一个函数,您可以在其中输入数据点及其坐标并从给定坐标获取插值数据。
对于插值,这些库可能很有用。 JSpline+ Java 数值库
或者,您可以使用线性插值:
double lerp(double x1, double y1, double x2, double y2, double x3) { double y3 = y1 + (y2 - y1) * ((x3 - x1) / (x2 - x1)); return y3; }
其中 (x1, y1) 和 (x2, y2) 是您想要插值的点,而 (x3, y3) 是您想要计算的点。