Extract data from simulink to excel
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi!
how to extract the list of inputs and outputs from simulink and list them on an excel. Should I imperatively put for each input/output a toworkspace block?,
2 comentarios
Fangjun Jiang
el 30 de Mzo. de 2022
Do you want the names of the Inport/Outport blocks, or the data values of those blocks for a simulation?
Respuestas (1)
Fangjun Jiang
el 30 de Mzo. de 2022
blocks=find_system('Model/System','FindAll','On','SearchDepth','0', 'BlockType','Inport');
get(blocks,'Name')
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Functions in Microsoft Excel en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!