モデル内に含まれるMatlab Function ブロックの一覧を検出する方法はありますか?
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 25 Juil 2023
Réponse apportée : 交感神経優位なあかべぇ
le 26 Juil 2023
モデル内に含まれるMatlab Function ブロックの一覧を検出する方法を教えてください。
Réponse acceptée
MathWorks Support Team
le 25 Juil 2023
Modifié(e) : MathWorks Support Team
le 25 Juil 2023
Stateflow.EMChart オブジェクトを使用して、検出できます。
%モデルを開く
%以下でMATLAB Function ブロックパスを検出
bd = get_param(gcs,'Object');
blks = find(bd,'-isa','Stateflow.EMChart');
for n=1:length(blks)
blks(n).Path
end
%
関連ドキュメントページ
プログラムによる MATLAB Function ブロックの設定
https://jp.mathworks.com/help/simulink/ug/configure-matlab-function-blocks-programmatically.html
0 commentaires
Plus de réponses (1)
交感神経優位なあかべぇ
le 26 Juil 2023
SubSystemのブロックパラメーターSFBlockTypeをfind_systemで検索することで、MATLAB Functionを検出できます。
find_system(bdroot, 'SFBlockType', 'MATLAB Function')
同様の方法で、下記Stateflowブロックも特定することができます。ブロック名とSFBlockTypeの値を記述します。
ブロック名 : SFBlockType
- Chart : Chart
- Truth Table : Truth Table
- State Transition Table : State Transition Table
- MATLAB Function : MATLAB Function
0 commentaires
Voir également
Catégories
En savoir plus sur Simulink Function dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!