How do i make a loop in simulink?
Afficher commentaires plus anciens
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!
Réponses (0)
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!