フィルターのクリア

simulink components names from vector of strings

1 回表示 (過去 30 日間)
Tomas Iesmantas
Tomas Iesmantas 2011 年 5 月 25 日
Hi, I need to generate automatical simulink model. Suppose you have some library with your components, say 'Library' and vector with names of components in library, say vector={'component1' 'component2'}. In non-automatic way you can put your component with line:
add_block('library/Component1','cas/Name1');
But does anybody know how to do it by using names in vector? e.g.
add_block('library/vector(1)','cas/Name1');
add_block('library/vector(2)','cas/Name2');
Of course, these lines does not work, I wrote it just to make clear of what problem I'm dealing with.
Thanks in advance, Tomas

採用された回答

Jarrod Rivituso
Jarrod Rivituso 2011 年 5 月 25 日
Sounds like you just need some string concatenation...
for i = 1:length(vector)
block2AddSrc = ['library/' vector{i}];
block2AddName = ['cas/Name' num2str(i)];
addblock(block2AddSrc,block2AddName);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFoundation and Custom Domains についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by