18 lines
316 B
C
18 lines
316 B
C
|
|
#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
|