How to get all input signal names connected to my simulink block exported in excel file?

43 views (last 30 days)
I need to get all input signals name to be exported in new excel file for my simulink block by MATLAB code.
Please can anyone tell me how to do that and which MATLAB tools will be required to export to excel file?

Answers (1)

Mark McBroom
Mark McBroom on 14 May 2020
Here is one approach:
Write MATLAB code that:
  1. use find_system() command to get list of all input ports at top level of model.
  2. write a for loop that iterates over each input port found in step 1. Use get_param() to get the desired information for each port ( for example, name, type, dimensions, etc.)
  3. Collect the information for each port into a MATLAB table
  4. use function writetable() to write the info from step 3 to a XLS file

Categories

Find more on Programmatic Model Editing in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!