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

27 visualizzazioni (ultimi 30 giorni)
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?

Risposte (1)

Mark McBroom
Mark McBroom il 14 Mag 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

Categorie

Scopri di più su Programmatic Model Editing in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by