csv parse update

This commit is contained in:
2026-02-25 11:44:59 -08:00
parent c19f65c3a1
commit f1c2df31d9
9 changed files with 72 additions and 33 deletions

View File

@@ -0,0 +1,12 @@
function obj = initializeFromCsv(obj, csvPath)
arguments (Input)
obj (1, 1) {mustBeA(obj, 'miSim')};
csvPath (1, 1) string;
end
arguments (Output)
obj (1, 1) {mustBeA(obj, 'miSim')};
end
params = obj.readScenarioCsv(tc.csvPath);
end