Auswertung Experiment

Database tüddelei
DBHanlder läuft gut für DIESE Datanbank struktur...
App begonnen aber weit entfernt von gutem Stand
This commit is contained in:
sioe
2024-11-15 16:51:37 +01:00
parent 553ed19b9f
commit 397cfa61dd
219 changed files with 584 additions and 854 deletions

9
Datatypes/db_mode.m Normal file
View File

@@ -0,0 +1,9 @@
classdef db_mode < int32
enumeration
no_db (0)
db_precoded (1)
db_encoded (2)
end
end

View File

@@ -0,0 +1,11 @@
classdef equalizer_structure < int32
enumeration
ffe (0)
vnle (1)
vnle_pf_mlse (2)
db_precoded (3)
db_encoded (4)
end
end

11
Datatypes/isEnumeration.m Normal file
View File

@@ -0,0 +1,11 @@
function result = isEnumeration(value)
% isEnumeration Checks if a given value is an instance of an enumeration class
% Usage:
% result = isEnumeration(value);
% Get meta information about the class of the value
metaInfo = metaclass(value);
% Check if the meta information indicates an enumeration class
result = metaInfo.Enumeration;
end