Extract data from simulink to excel
조회 수: 8 (최근 30일)
이전 댓글 표시
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
Fangjun Jiang
2022년 3월 30일
Do you want the names of the Inport/Outport blocks, or the data values of those blocks for a simulation?
답변 (1개)
Fangjun Jiang
2022년 3월 30일
blocks=find_system('Model/System','FindAll','On','SearchDepth','0', 'BlockType','Inport');
get(blocks,'Name')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Functions in Microsoft Excel에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!