added file to make PX4 math functions compatible with eigen

This commit is contained in:
Roman Bapst
2014-12-15 09:06:58 +01:00
parent b500cfb1f1
commit f19b8e570c
+20
View File
@@ -0,0 +1,20 @@
/*
* eigen_math.h
*
* Created on: Aug 25, 2014
* Author: roman
*/
#ifndef EIGEN_MATH_H_
#define EIGEN_MATH_H_
struct eigen_matrix_instance
{
int numRows;
int numCols;
float *pData;
};
#endif /* EIGEN_MATH_H_ */