非バーチャルブロックの数
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Simulinkにおいて,学生ライセンスの制限である1000個の非バーチャルブロックを超えているとのエラーが出ました.ブロックの数を減らすことで回避しましたが,現在のブロック数にあと何ブロックの余裕があるのか知りたいと思い,Simulinkモデルのブロック数を調べる以下のコマンドを実行しました.
sldiagnostics('モデル名','CountBlocks')
その結果,2055個のブロックが見つかりましたとの結果が返されました.現在,対象のSimulinkモデルはライセンスの制限にかかることなく動作しているので,非バーチャルブロックの数は1000個を超えていないはずです.すなわち,2055個というのはライセンスの制限対象となる非バーチャルブロックの数ではないと思うのですが,ライセンスの制限対象となる非バーチャルブロックの数を調べる方法はありますか?
0 commentaires
Réponse acceptée
Kazuya
le 20 Mai 2019
に
length(find_system('ModelName', 'LookUnderMasks', 'on', 'FollowLinks', 'on','Virtual', 'off'))
とありますが、こちらではいかがですか?
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Sources 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!