非バーチャルブロックの数
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Yu Yamanaka
el 20 de Mayo de 2019
Comentada: Yu Yamanaka
el 20 de Mayo de 2019
Simulinkにおいて,学生ライセンスの制限である1000個の非バーチャルブロックを超えているとのエラーが出ました.ブロックの数を減らすことで回避しましたが,現在のブロック数にあと何ブロックの余裕があるのか知りたいと思い,Simulinkモデルのブロック数を調べる以下のコマンドを実行しました.
sldiagnostics('モデル名','CountBlocks')
その結果,2055個のブロックが見つかりましたとの結果が返されました.現在,対象のSimulinkモデルはライセンスの制限にかかることなく動作しているので,非バーチャルブロックの数は1000個を超えていないはずです.すなわち,2055個というのはライセンスの制限対象となる非バーチャルブロックの数ではないと思うのですが,ライセンスの制限対象となる非バーチャルブロックの数を調べる方法はありますか?
0 comentarios
Respuesta aceptada
Kazuya
el 20 de Mayo de 2019
に
length(find_system('ModelName', 'LookUnderMasks', 'on', 'FollowLinks', 'on','Virtual', 'off'))
とありますが、こちらではいかがですか?
Más respuestas (0)
Ver también
Categorías
Más información sobre Sources en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!