Adding names to the mlm.opt file when the maximum allowable number of characters (4000) is reached.

4 views (last 30 days)
We would like to enter additional names to selected toolboxes and blocksets within the mlm.opt (options) file. However, we have reached the maximum number of allowed characters (4000). To get around this, we haved deleted some names from the line. Is there a way to split the line?

Accepted Answer

Manikanta Aditya
Manikanta Aditya on 12 Feb 2025
  • If you have a large number of users, you can create multiple groups and then include those groups in the relevant INCLUDE or EXCLUDE statements. For example:
GROUP myGroup1 user1 user2 user3 user4 user5
GROUP myGroup2 user6 user7 user8 user9 user10
INCLUDE MATLAB GROUP myGroup1
INCLUDE MATLAB GROUP myGroup2
  • You can split the entries across multiple lines by continuing the group definition on the next line. For example:
GROUP myGroup user1 user2 user3 user4 user5 \
user6 user7 user8 user9 user10
You can refer to the following MATLAB Answer post:
I hope this helps.

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2024b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!