From 7237a4fc0a55268a969b260ec02a989f81a245d0 Mon Sep 17 00:00:00 2001 From: Mauco03 <marco.gaibotti@skywarder.eu> Date: Mon, 21 Apr 2025 12:31:14 +0200 Subject: [PATCH] [coeff-transport][Mission] Added prp, gnc and dissile path to mission --- classes/Mission.m | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/classes/Mission.m b/classes/Mission.m index 12cb70f..749a695 100644 --- a/classes/Mission.m +++ b/classes/Mission.m @@ -23,6 +23,9 @@ classdef Mission < Config configPath char dataPath char msaPath char + prpPath char + gncPath char + dissilePath char end properties(Access = private) @@ -98,6 +101,12 @@ classdef Mission < Config obj.dataPath = fullfile(obj.currentPath, obj.name, 'data'); obj.msaPath = trimPath( ... fullfile(obj.currentPath, '..', '..', '..', 'msa-toolkit')); + obj.prpPath = trimPath( ... + fullfile(obj.currentPath, '..', '..', '..', 'prp-toolkit')); + obj.gncPath = trimPath( ... + fullfile(obj.currentPath, '..', '..', '..', 'matlab-simulator')); + obj.dissilePath = trimPath( ... + fullfile(obj.currentPath, '..', '..', '..', 'dissilematcom')); end function updateMatlabPath(obj) -- GitLab