owlps/owlps-positioning/src/interlinknetworks.hh

17 lines
486 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(void): PositioningAlgorithm("InterlinkNetworks") {}
~InterlinkNetworks(void) {}
float estimate_distance(const Measurement &measurement) ;
} ;
#endif // _OWLPS_POSITIONING_INTERLINKNETWORKS_HH_