How do i make a loop in simulink?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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!
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!