from workspace to m.file
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello. I want to take a variable from workspace to m-file. After I will process this variable and I will send to simulink. Could you help me please?
댓글 수: 0
채택된 답변
Paulo Silva
2011년 3월 31일
if your m file is just code (not a function) the variables are in the same scope as the worspace, you just need to call them like you do in the workspace, if you are inside a function you should provide the variable as argument to the function or use fun=evalin('base','funname') inside your function code to get the variable value from the workspace.
댓글 수: 7
Paulo Silva
2011년 3월 31일
%initialize inputs
%loop x times or until some result if found
%start simulation and wait until it ends
%analyze simulation output and store info
%prepare inputs for another simulation
%return to start of the loop
추가 답변 (1개)
Kaustubha Govind
2011년 3월 31일
You might find it useful to read the documentation on Running Parallel Simulations. There is also Solution #1-6GRUQ3 that describes the broader usage of Parallel Computing Toolbox with Simulink.
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!