rfsensor parameterization

This commit is contained in:
2026-05-06 17:16:57 -07:00
parent ea111e56f8
commit bc26cbc706
9 changed files with 37 additions and 21 deletions
+1 -1
View File
@@ -10,6 +10,6 @@ function value = RSS(obj, d, t, a)
end
assert(size(d, 1) == size(t, 1), "Mismatch in number of distances (%d) and tilts (%d) provided", size(d, 1), size(t, 1));
% RSS (dBm) = TX Power (dBm) + TX Antenna Gain (dB) + RX Antenna Gain (dBi) - Path Loss (dB)
% RSS (dBm) = TX Power (dBm) + TX Antenna Gain (dBi) + RX Antenna Gain (dBi) - Path Loss (dB)
value = obj.P_TX_dBm + obj.transmitterGain(t, a) + obj.G_RX_dBi - obj.pathLoss(d);
end