2023-04-19 11:31:01 +08:00
|
|
|
#ifndef AURORA_FUNCTION2D_H
|
|
|
|
|
#define AURORA_FUNCTION2D_H
|
|
|
|
|
|
2023-04-20 15:34:38 +08:00
|
|
|
#include "Matrix.h"
|
|
|
|
|
#include "Function1D.h"
|
2023-04-19 11:31:01 +08:00
|
|
|
|
2023-04-20 15:34:38 +08:00
|
|
|
|
|
|
|
|
namespace Aurora {
|
|
|
|
|
|
|
|
|
|
Matrix interp2(const Matrix& aX, const Matrix& aY, const Matrix& aV, const Matrix& aX1, const Matrix& aY1, InterpnMethod aMethod);
|
|
|
|
|
Matrix interpn(const Matrix& aX, const Matrix& aY, const Matrix& aV, const Matrix& aX1, const Matrix& aY1, InterpnMethod aMethod);
|
2023-04-19 11:31:01 +08:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //AURORA_FUNCTION2D_H
|