mainly tests (empty) and some theroy plots

This commit is contained in:
Silas Oettinghaus
2026-03-12 17:26:13 +01:00
parent 2a724b833f
commit 4c78a1e0b1
90 changed files with 1507 additions and 404 deletions

View File

@@ -3,7 +3,7 @@ function generateTests()
if ismac
cd('/Users/silasoettinghaus/Documents/MATLAB/imdd_simulation');
else
cd('C:\Users\Silas\Documents\MATLAB\imdd_simulation');
end
% Define the root folders for classes and tests
@@ -16,7 +16,7 @@ function generateTests()
end
% Get all .m files in the Classes folder and its subfolders
classFiles = dir(fullfile(classesFolder, '**', '*.m'));
classFiles = dir(fullfile(pwd,classesFolder, '**', '*.m'));
% Iterate over all class files
for i = 1:length(classFiles)