i2cm: remove uneeded comment
[protos/imu.git] / matrix.h
1 #ifndef _MATRIX_H_
2 #define _MATRIX_H_
3
4 // Multiply two 3x3 matrixs.
5 void Matrix_Multiply(float a[3][3], float b[3][3],float mat[3][3]);
6 #endif// _MATRIX_H_