関数が「ルート」と以下のすべてのサブシステムへのパスを返すようにします。リストを実行し、サブシステムパスを追加および取得するすべての関数を見つける必要があるため、これは私の試みであり、まだ実行していません。しかし、これらの関数の検索を続行できるように、これが正しい方法であるかどうか、またはそれを実行する関数またはその一部が存在するかどうかを尋ねたかっただけです。
function dest,paths = SaveRootAndBelow(path)
entitytosave = gcs;
if strcmp(bdroot(entitytosave),entitytosave)
% I'm the main model
dest = save_system(entitytosave,path);
paths = getPaths(entitytosave)
else
% I'm a subsystem
newbd = new_system;
open_system(newbd);
% copy the subsystem
Simulink.SubSystem.copyContentsToBlockDiagram(entitytosave, newbd);
dest = save_system(newbd,path);
paths = getPaths(newbd)
% close the new model
close_system(newbd, 0);
end
end
function paths = getPaths(root)
paths = []
subsystems = find_system(modelName, 'BlockType', 'SubSystem')
foreach subsystem in subsystems
paths.append(subsyspath)
paths.append(getPaths(subsystem))
end
end