IMathLib-ソースコード-

  • pocket
  • はてなブックマーク

#ifndef IMATHLIB_H_IMATHLIBEX_HPP
#define IMATHLIB_H_IMATHLIBEX_HPP

// バージョン(公開日)
#define IMATHLIBEX_VERSION


#include "IMathLib/utility/tuple.hpp"

// 数学関数ライブラリ
#include "IMathLib/math/math.hpp"							// 数学関数
#include "IMathLib/math/extra_math.hpp"						// 数学関数の拡張
#include "IMathLib/math/liner_algebra.hpp"					// 線形代数演算
#include "IMathLib/math/hypercomplex.hpp"					// 多元数
#include "IMathLib/math/graph.hpp"							// グラフ処理
#include "IMathLib/math/automatic_differentiation.hpp"		// 自動微分
#include "IMathLib/math/fourier.hpp"						// フーリエ変換
#include "IMathLib/math/differential_equation.hpp"			// 微分方程式の数値解法
#include "IMathLib/math/statistics.hpp"						// 統計演算
#include "IMathLib/math/data.hpp"							// データ処理


#endif