Commit before first big baudrate sweep

This commit is contained in:
Silas Labor Zizou
2024-10-24 19:41:59 +02:00
parent cfd1bdb513
commit bafc7f12b7
11 changed files with 588 additions and 318 deletions

View File

@@ -39,9 +39,9 @@ function showCurrentMeasurement(varargin)
% Convert values to strings for display
for i = 1:length(values)
varNameLower = lower(names{i}); % Convert variable name to lowercase for case-insensitive comparison
varNameLower = names{i}; % Convert variable name to lowercase for case-insensitive comparison
if isnumeric(values{i})
if strcmp(varNameLower, 'ber')
if any(strcmpi(varNameLower, {'ber','mlse','ffe','db'}))
% Format 'ber' values in exponential notation with two decimal places
values{i} = sprintf('%.2e', values{i});
else