How to apply 'For Iterator" in simulink?
Show older comments
Recently I've been trying to simulate a model in simulink. I wanted to run the system using For Iterator, I try to express it using code.
int local_time;
for(local_time=9; local_time<=17; local_time=local_time+1)
{
a=local_time+b; //One equation using local_time as input
sin c=(cos a)*(cos b);//another 2 equation need a as input
cos d=(sin a)*(cos C);//the equation will calculate using different
//local_time from 9 to 17
}
Can it be done using Simulink 'For Iterator'? And do I need to put my equation block inside the 'For Iterator' block?
Answers (1)
TAB
on 17 Jul 2018
0 votes
Use For Iterator Subsystem SubSystem:
- Set Iteration limit to 9 (for iterating 1 to 9)
- Add inport to iterator Subsystem as b
- Add outports to iterator Subsystem as c & d (I assume c & d are outputs)
- Implement your logic
4 Comments
Men Loon Chan
on 17 Jul 2018
Edited: Men Loon Chan
on 17 Jul 2018
TAB
on 17 Jul 2018
Not needed. For iterator will do it. You can get the iternatioin count from "For Iterator Subsystem\For Iterator" block (output N). This will act as "local_time" for you.
Men Loon Chan
on 17 Jul 2018
Men Loon Chan
on 18 Jul 2018
Categories
Find more on General Applications in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!