How to Model For loop as Simulink Model?
Afficher commentaires plus anciens
Hello All,
Suppose I want to model the folowing logic or code in Simulink.
for i=1:10
A(i)=i
end
% ^ How to model the above logic
% This Example hoe to model in simulink
for i=1:10
if i==1
a(i)=24;
else
a(i)=1+i;
end
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Create Large-Scale Model Components 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!
