- Fixed 'ML_MLSE'

- Added weighted DFE (work in progress)
- Added 'Evaluation Scripts' and 'Data' to 'projects\FSO_transmission', which contain different evaluations and measured data regarding the DSP applications for the FSO transmission data.
This commit is contained in:
magf
2026-01-20 13:45:53 +01:00
16 changed files with 615 additions and 151 deletions

View File

@@ -45,6 +45,7 @@ end
ml_mlse_results.config = Equalizerstruct();
<<<<<<< HEAD
eq_small = strip_eq(eq_, 10);
fn = fieldnames(eq_small);
for k = 1:numel(fn)
@@ -53,6 +54,9 @@ for k = 1:numel(fn)
end
end
json_str = jsonencode(eq_small);
=======
eq_ = strip_eq(eq_, 10);
>>>>>>> 719e5508e776c18e3dcf72a954c71bdedda179e0
fn = fieldnames(eq_);
for k = 1:numel(fn)
@@ -148,6 +152,9 @@ function eq_out = strip_eq(eq_, max_elems)
eq_.(props{i}) = [];
end
end
if issparse(val)
eq_.(props{i}) = find(eq_.(props{i}));
end
end
eq_out = eq_;
end