Add meshgrid and unitTest.
This commit is contained in:
18
src/common/meshgrid.h
Normal file
18
src/common/meshgrid.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef MESHGRID_H
|
||||
#define MESHGRID_H
|
||||
|
||||
#include "Matrix.h"
|
||||
|
||||
namespace Recon
|
||||
{
|
||||
struct MeshgridResult
|
||||
{
|
||||
Aurora::Matrix xx;
|
||||
Aurora::Matrix yy;
|
||||
Aurora::Matrix zz;
|
||||
};
|
||||
|
||||
MeshgridResult meshgrid(const Aurora::Matrix& aX, const Aurora::Matrix& aY, const Aurora::Matrix& aZ);
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user