Last commit after 400G Lab Measurement

This commit is contained in:
Silas Labor Zizou
2024-11-04 08:57:53 +01:00
parent cf4e0f2b12
commit 492f889dce
9 changed files with 669 additions and 266 deletions

View File

@@ -41,7 +41,7 @@ function showCurrentMeasurement(varargin)
for i = 1:length(values)
varNameLower = names{i}; % Convert variable name to lowercase for case-insensitive comparison
if isnumeric(values{i})
if any(contains(varNameLower, {'ber','mlse','ffe','db'}))
if any(contains(varNameLower, {'ber','mlse','ffe','db'},"IgnoreCase",true))
% Format 'ber' values in exponential notation with two decimal places
values{i} = sprintf('%.2e', values{i});
else