From 69e11549b2a52c9368397784702d3145c4eb6343 Mon Sep 17 00:00:00 2001 From: Kevin D Date: Tue, 21 Apr 2026 10:33:48 -0700 Subject: [PATCH] plot fix --- @rfSensor/plotParameters.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/@rfSensor/plotParameters.m b/@rfSensor/plotParameters.m index 89623d5..7521464 100644 --- a/@rfSensor/plotParameters.m +++ b/@rfSensor/plotParameters.m @@ -22,9 +22,9 @@ function f = plotParameters(obj) % Plot resultant sigmoid curves f = figure; grid("on"); - title("SNR vs Distance"); + surf(d_mg, t_mg, reshape(s_x, size(d_mg))); + title("SNR vs Distance and Tilt"); xlabel("Distance (m)"); ylabel("Tilt (deg)"); zlabel("SNR (dB)"); - surf(d_mg, t_mg, reshape(s_x, size(d_mg))); end \ No newline at end of file