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.
对于在fortran中使用spline和splint子程序,子程序中有数组的一阶导数和二阶导数。但是这里我只有 yi=f(xi),对于导数,我应该在子程序中放入哪个数量?
不知道您是否仍然对解决方案感兴趣,但可以帮助遇到相同问题的任何人:
书籍“fortran 77 的数字食谱”(和 90)非常清楚地解释了这些子例程的作用。您必须先调用 SPLINE,它将计算二阶导数。然后调用 SPLINT 输入值以及衍生物。
您可以使用一阶导数作为边界条件。