Files
Aurora/src/Function3D.h

17 lines
500 B
C
Raw Normal View History

#ifndef AURORA_FUNCTION3D_H
#define AURORA_FUNCTION3D_H
2023-04-20 15:34:38 +08:00
#include "Matrix.h"
#include "Function1D.h"
namespace Aurora {
Matrix interp3(const Matrix& aX, const Matrix& aY, const Matrix& aZ, const Matrix& aV, const Matrix& aX1, const Matrix& aY1, const Matrix& aZ1,InterpnMethod aMethod);
Matrix interpn(const Matrix& aX, const Matrix& aY, const Matrix& aZ, const Matrix& aV, const Matrix& aX1, const Matrix& aY1, const Matrix& aZ1,InterpnMethod aMethod);
};
#endif //AURORA_FUNCTION3D_H