How do i make a loop in simulink?
Show older comments
Hi! I have written a code in script and it works well. But i don't know how to make it in simulink. This is my code:
- x = [1,2,3]';
- F = [1,2,3; 4,5,6; 7,8,9];
- for i = 1:10
- x = F*x;
- end
- t = 1:10;
- plot(t, x(1,t));
Thanks!
Answers (0)
Categories
Find more on Loops and Conditional Statements 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!