PX4-Autopilot/test/vector.cpp
2015-11-03 14:46:54 -05:00

14 lines
176 B
C++

#include "Vector.hpp"
#include <assert.h>
#include <stdio.h>
using namespace matrix;
int main()
{
Vector<float, 5> v;
float n = v.norm();
float r = v.dot(v);
return 0;
}