owlps/owlps-positioning/src/interlinknetworks.hh

18 lines
506 B
C++

#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(const Mobile *_mobile = NULL):
MultilaterationAlgorithm(_mobile) {}
~InterlinkNetworks(void) {}
float estimate_distance(const Measurement &measurement) ;
} ;
#endif // _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_