Fix function by default value 1 in matrix mInfo .
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
#include "Function2D.h"
|
||||
#include "mkl.h"
|
||||
|
||||
using namespace Aurora;
|
||||
|
||||
double Aurora::immse(const Aurora::Matrix &aImageA, const Aurora::Matrix &aImageB) {
|
||||
if (aImageA.getDims()!=2|| aImageB.getDims()!=2){
|
||||
std::cerr<<"Fail!immse args must all 2d matrix!";
|
||||
@@ -67,10 +69,6 @@ Aurora::Matrix Aurora::inv(Aurora::Matrix&& aMatrix) {
|
||||
delete[] ipiv;
|
||||
return aMatrix;
|
||||
}
|
||||
#include "Function1D.h"
|
||||
#include "Function.h"
|
||||
|
||||
using namespace Aurora;
|
||||
|
||||
Matrix Aurora::interp2(const Matrix& aX, const Matrix& aY, const Matrix& aV, const Matrix& aX1, const Matrix& aY1, InterpnMethod aMethod)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user