[Positioning] ReferencePoint: clarify comments

This commit is contained in:
Matteo Cypriani 2011-10-21 13:52:43 +02:00
parent 95555f1c63
commit 0fcf846988
1 changed files with 4 additions and 1 deletions

View File

@ -217,6 +217,8 @@ friis_index_for_ap(const string &ap_mac) const
/**
* Computes a Friis index for the distance AP-ReferencePoint, based on
* the measurements of this AP that are present in the ReferencePoint.
* @param ap The AccessPoint to work on.
* @param const_term The "constant" part of the computation.
* @param nb_indexes (result) The number of indexes computed.
@ -235,7 +237,7 @@ float ReferencePoint::friis_indexes_for_ap(
float distance = this->distance(ap.get_coordinates()) ;
/*
* Compute an index for each Measurement in each Request in the
* Compute an index for the AP's Measurement in each Request in the
* ReferencePoint. The Friis index for the AP is the average of all
* these indexes (we do not compute the average in this function).
*/
@ -265,6 +267,7 @@ float ReferencePoint::friis_indexes_for_ap(
}
/* *** Operators *** */