FFE now has a automatic optimization of the mu-parameters -> enables the fast comparison of LMS, NLMS and RLS and also good for very long filters (1000+ taps) which might be unstable else.

Minor changes here and there
This commit is contained in:
Silas Oettinghaus
2026-05-12 10:40:03 +02:00
parent 56b48095db
commit f883071dec
13 changed files with 524 additions and 65 deletions

View File

@@ -7,6 +7,10 @@ arguments
options.parameters = struct();
options.database_type
options.dataBase
options.server = "134.245.243.254";
options.port = 3306;
options.user = "silas";
options.password = "silas";
options.load_file_path = struct();
options.storage_path
options.mode
@@ -18,7 +22,8 @@ try
if options.mode == "load_run_id" || options.append_to_db
database = DBHandler("dataBase", [options.dataBase], "type", options.database_type, ...
'user', "silas", 'password', "silas", 'server', "134.245.243.254");
"user", options.user, "password", options.password, ...
"server", options.server, "port", options.port);
end
if options.mode == "load_run_id"
@@ -68,7 +73,6 @@ function output = initializeOutput()
end
function dspInput = loadDspInputFromFiles(run_id, options)
%#ok<INUSD>
Tx_bits = load(options.load_file_path.tx_bits_path);
Symbols = load(options.load_file_path.tx_symbols_path);
Scpe_sig_raw = load(options.load_file_path.rx_raw_path);