Why is the Blockset Designer not visible on the Simulink Start page in MATLAB R2024a?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 25 de Sept. de 2024
Respondida: MathWorks Support Team
el 7 de Oct. de 2024
Why is the Blockset Designer not visible on the Simulink Start page in MATLAB R2024a?

Respuesta aceptada
MathWorks Support Team
el 4 de Nov. de 2024
Follow the steps listed below to check if it is an installation issue:
1. Run the following command in the MATLAB Command Window to verify if the following file exists in your MATLAB installation directory. This file serves as the template for the Blockset Designer.
>> fullfile(matlabroot,'toolbox','simulink','simulink','slblocksetsdk','blockset_sdk.sltx')
2. If the file is missing, it may indicate an installation issue. In such a case, uninstall and reinstall MATLAB to see if the problem persists.
Another workaround is to run the following API command in the MATLAB Command Window to create a project from the template. Replace "myblocksetdesignerProject" with the desired name for your project.
>> proj = Simulink.createFromTemplate(fullfile(matlabroot,'toolbox','simulink','simulink','slblocksetsdk','blockset_sdk.sltx'),'Name', 'myblocksetdesignerProject', 'Folder', pwd);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interactive Model Editing 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!