owlps/owlps-positioning/src/interlinknetworks.hh

17 lines
443 B
C++
Raw Normal View History

#ifndef _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_
#define _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_
#include "multilaterationalgorithm.hh"
/// Computes a position using the Interlink Networks formula
class InterlinkNetworks: public MultilaterationAlgorithm
{
public:
InterlinkNetworks(void) {}
~InterlinkNetworks(void) {}
float estimate_distance(const Measurement &measurement) ;
} ;
#endif // _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_