How do I search for library links in my model from the command line in Simulink 7.4 (R2009b)?

Technical Source
2 min readSep 7, 2021

In Model Explorer I have an option to search for library links in my model. I would like to know how I can achieve the same using the command line tools.

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

In order to obtain a list of blocks that are library links you will have to find all blocks in your model that have their ‘LinkStatus’ property not set to ‘none’. One way to achieve this would be to use the FIND_SYSTEM command with a regular expression that excludes all results that are equal to ‘none’:

libraryLinks = find_system(gcs, 'regexp', 'on', 'linkstatus', '^((?!none).)*$')

You may want to use the ‘LookUnderMasks’ option of FIND_SYSTEM as well to find the blocks under masks as well.

Alternatively you could use several FIND_SYSTEM calls to find all blocks with another status and combine the results.

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.