boost::math ライブラリの catmull_rom 補間関数を使用して補間計算を実行するのは、一般的な数学的手法です。ここでは、この機能をベースにしたテストプログラムのサンプルコードを提供します。

boost::math ライブラリの catmull_rom 補間関数を使用して補間計算を実行するのは、一般的な数学的手法です。ここでは、この機能をベースにしたテストプログラムのサンプルコードを提供します。

#include <iostream>
#include <vector>
#include <boost/math/interpolators/catmull_rom.hpp>

int main()
{
   
    
    
    std::vect

おすすめ

転載: blog.csdn.net/qq_33885122/article/details/132504901