How to find the license dependency of a Simulink model?
Show older comments
Hi,
I have created a model using Matlab R2021b, which we have tried to use on a second PC. When we update model on the second PC, we got the error 'use of this data type requires a Fixed-Point Designer license'. We have solved the issue via changing the license, but now we want to figure out, which blocks need which the license. I have tried the 'Dependency Analyzer' on Simulink, but it gives the software dependency and not the license dependency and it doesn't list the Fixed-Point Designer anywhere. I saw 'The Dependency Analyzer is unable to detect blocksets that do not introduce dependencies on any files, such as Fixed-Point Designer™. To include dependencies that the analysis cannot detect, add the file that introduces the dependency to your project. To create a project from your model, see Create a Project from a Model.' on https://de.mathworks.com/help/simulink/ug/scope-and-limitations.html#mw_6e26dad9-2eb7-449e-9327-2d00486af440 and created a project, but it also didn't showed the licenses needed.
Is it possible on Matlab to generate a report to get, which licenses are needed to compile the model?
Thanks in advance
Accepted Answer
More Answers (1)
Hassaan
on 22 Jan 2024
0 votes
- Identify Fixed-Point Capable Blocks: Go through your Simulink model and identify blocks that have fixed-point settings. These are typically blocks from the DSP System Toolbox or blocks that explicitly mention fixed-point support in their documentation.
- Check Block Documentation: For each block that supports fixed-point, check the MATLAB documentation to see if it mentions the need for a Fixed-Point Designer license.
- Isolate and Test Blocks: Isolate blocks that you suspect might require Fixed-Point Designer and try to simulate them in a separate model without the Fixed-Point Designer license (e.g., on a machine without that license).
- Use save_system and load_system Functions: Save your system and then load it using load_system function on a machine without Fixed-Point Designer license. Try to compile the model. If it fails due to a missing license, it's likely that some blocks require Fixed-Point Designer.
- Contact MathWorks Support: If you are unable to determine the dependency through documentation or testing, MathWorks Support can often provide a definitive answer.
- Trial and Error: As a last resort, on the second PC (where the license is not installed), try to simulate the model and observe which blocks throw errors related to the lack of a Fixed-Point Designer license.
- License Check Script: Write a script to programmatically check each block for fixed-point settings by accessing block parameters through MATLAB commands. This approach requires in-depth knowledge of Simulink APIs.
Remember that certain blocks might not need a Fixed-Point Designer license just for simulation purposes but may require it for code generation or when specific options are enabled. Always check the latest documentation for the version of MATLAB you are using, as license requirements can change between versions.
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
2 Comments
sabriozer33
on 22 Jan 2024
Hassaan
on 22 Jan 2024
@sabriozer33 You are welcome.
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
- Technical Services and Consulting
- Embedded Systems | Firmware Developement | Simulations
- Electrical and Electronics Engineering
Feel free to contact me.
Categories
Find more on Fixed-Point Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!