How can I save last values of a [3x1] array in real time simulink application?
이전 댓글 표시
Hi everyone,
I am interfacing my beaglebone platform with simulink for a real time application. I take data from a sensor and I want to store its values when I send a command by a UDP communication.
I know that there are "to workspace" or "to file" blocks but they save all the date from the beginning of the simulation.
Therefore, I am trying to use fopen, fprintf, fclose in an embedded matlab function, but it does not work because, even if it compiles, it does not save any file.
Do you know how can I save data?
Flavio
답변 (1개)
Sebastian Castro
2015년 8월 4일
0 개 추천
You're trying to save data on the MATLAB side, and not standalone on the BeagleBone, correct? If so, you can try this out.
- Replace the "To Workspace" block with a regular output port (Out1) block
- Go to Simulation > Model Configuration Parameters, in the Data Import/Export pane
- Make sure the Output option is enabled
- Enable the Limit data points to last option and set it to 1
- Sebastian
카테고리
도움말 센터 및 File Exchange에서 Real-Time Signal Logging and Streaming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!