#ifndef AURORA_FUNCTION2D_H #define AURORA_FUNCTION2D_H #include "Matrix.h" #include "Function1D.h" namespace Aurora { double immse(const Matrix& aImageA, const Matrix& aImageB); Matrix inv(const Matrix& aMatrix); Matrix inv(Matrix&& aMatrix); 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); Matrix std(const Matrix& aMatrix); }; #endif //AURORA_FUNCTION2D_H