Displaying 1 result from an estimated 1 matches for "ddoa".
Did you mean:
doa
2010 Aug 09
2
TRUE/FALSE
Here is my code
# determine the DDOA measurements
for(e in 1:numSensors)
{
for(f in 1:numSensors)
{
if((combos[e,f]==1)
{
# true distance between each sensor and the target
truedistance[e]<-sqrt((targetX-sensorX[e])^2+(targetY-sensorY[e])^2)
# add an error that has a N(0, sigma^2) distri...