began developing new sensor model

This commit is contained in:
2026-04-19 12:25:05 -07:00
parent fbcaa32abd
commit dd0861d11c
29 changed files with 257 additions and 5 deletions
+25
View File
@@ -0,0 +1,25 @@
classdef test_rfSensor < matlab.unittest.TestCase
properties (Access = private)
% System under test
testClass = sigmoidSensor;
end
methods (TestMethodSetup)
function tc = setup(tc)
% Reinitialize sensor with random parameters
tc.testClass = rfSensor;
% TODO
tc.testClass = tc.testClass.initialize();
end
end
methods (Test)
% Test methods
function test_SINR(tc)
tc.testClass.plotParameters();
% [SINR] = tc.testClass.sensorPerformance(obj, agentPos, agentPan, agentTilt, targetPos);
end
end
end