Simulink Check及び、Simulink Fixed Poinのfeature名
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kazu Ari
el 21 de En. de 2019
Respondida: Kazuya
el 22 de En. de 2019
コンカレントライセンスで稼働しているライセンスをチェックしていますが、Simulink CheckとSimulink Fixed Pointのfeature名は何なのか、わかる方いませんでしょうか?
0 comentarios
Respuesta aceptada
Kazuya
el 22 de En. de 2019
ライセンスに含まれている製品の Feature 名はどのように取得しますか?https://jp.mathworks.com/matlabcentral/answers/223214-feature
に方法が書かれてありました。
productidentifier = com.mathworks.product.util.ProductIdentifier.get('Fixed-Point Designer');
feature = char(productidentifier.getFlexName())
feature =
'Fixed_Point_Toolbox'
productidentifier = com.mathworks.product.util.ProductIdentifier.get('Simulink Check');
feature = char(productidentifier.getFlexName())
feature =
'SL_Verification_Validation'
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Simscape en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!