How to find Matlab Function blocks in a model?

17 ビュー (過去 30 日間)
Hadi Zyien
Hadi Zyien 2019 年 5 月 30 日
編集済み: Christophe Pouillot 2023 年 11 月 14 日
I would like to use find_system to find all MATLAB Function blocks (from the User-Defined Functions library) in a model. The problem is that all MATLAB Function blocks are of BlockType SubSystem. What parameters can I use to only find the MATLAB Function blocks?

採用された回答

Monika Jaskolka
Monika Jaskolka 2019 年 6 月 5 日

その他の回答 (2 件)

Murugan C
Murugan C 2019 年 5 月 31 日
Hi Hadi Zyien
Yes, We have to use find_system to find matlab function block. After that, we need to use get_param command for finding matlab function block. Matlab Function block will have three to four parametes, as like
get_blocks ={' Demux ';' Ground ';' SFunction ';' Terminator '};
Use below code.
clc
clear
find_mat_fn = find_system(gcs,'BlockType','SubSystem'); % finding Subsytem
mat_fn = {' Demux ';'Ground';' SFunction ';' Terminator '}; % default parameter for Matlab Function Block
mat_blk_name = 1;
for i = 1 : length(find_mat_fn)
get_blocks = get_param(find_mat_fn{i}, 'Blocks'); % Blocks will returns what are the blocks used in subsystem
check_block = find(ismember(get_blocks,mat_fn) == 1); % comparing with default parameter
if check_block
matlab_fcn_blck{mat_blk_name} = find_mat_fn{i};
mat_blk_name = mat_blk_name + 1;
end
end
disp(matlab_fcn_blck)
/Murugan
  1 件のコメント
Hadi Zyien
Hadi Zyien 2019 年 6 月 4 日
Hi Murugan,
Unfortunately this approach also returns Stateflow charts.

サインインしてコメントする。


Christophe Pouillot
Christophe Pouillot 2023 年 11 月 14 日
編集済み: Christophe Pouillot 2023 年 11 月 14 日
Use the following code lines to find MATLAB function blocks:
rt = sfroot;
m = rt.find('-isa','Stateflow.EMChart')
It uses the powerfull yet under-recognized Stateflow API https://fr.mathworks.com/help/stateflow/ref/sfroot.html
Despite its name, I believe it is available with Simulink alone.

カテゴリ

Help Center および File ExchangeSimulink Functions についてさらに検索

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by