필터 지우기
필터 지우기

How to setup common file in .XML or .txt format to declare all variables globally for using it in simulink and stateflow?

조회 수: 1 (최근 30일)
I am currently working on controller of robot. The conroller contains combination of Simulink blocks and Stateflow. There are too many variable as well as inputs and outputs in my program. Some inputs are used multiple time in simulink as well as stateflow. As an example DESTINATION of robot is used as an input in around 8 blocks.
I want to setup a common file in which I can define all variables as well as inputs globally so that simulink and stateflow can use that to take input.
Can anyone please help me how can I do that?

채택된 답변

Mark McBroom
Mark McBroom 2019년 11월 17일
Are these "variables" fixed during the course of the simulation? If so, create parameters in a MATLAB script file and run the script file to load them into the base workspace. Use Simulink Constant blocks or Stateflow Parameters to reference those workspace parameters from your Simulink or Stateflow model.

추가 답변 (1개)

Stijn Haenen
Stijn Haenen 2019년 11월 14일
Creating a txt file can be done with:
a=10; b=20; c=30; d=40;
FP=fopen(sprintf('textfile.txt'),'wt');
fprintf(FP,'variable1 = %g\n',a);
fprintf(FP,'variable2 = %g\n',b);
fprintf(FP,'variable3 = %g\n',c);
fprintf(FP,'variable4 = %g\n',d);
fclose(FP);
I'm not sure if you ment this.
  댓글 수: 1
Parth Dhameliya
Parth Dhameliya 2019년 11월 14일
Thank you but after creating this .txt file how can I give these variablles a,b,c,d as input to simulink and stateflow.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Complex Logic에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by