create changing size array simulink
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
the value of signal m with counter Counter Free-Running go to simulink function' the function should be like:
function y = fcn(n,m)
y(n)=m;
the size of y should be change at each time step.
How can I achieve this ?? I getting an error.
%
0 commentaires
Réponses (1)
Prajit T R
le 14 Mar 2018
Hi Mike, The error occurs because for code generation in Simulink, you have to define the array 'y' before indexing or sub-scripting it as 'y(n)'. The same function works in MATLAB but not in Simulink. So you would have to pre-define the array y using the zeros function as per the length of the data you are using.
Could you specify the exact nature of the output that you desire? As per the circuit above, it seems to me that the variable m will be passed on to the output as it is. In such a case, there is no need for the above function block. In case you wish to obtain a shifted version of 'm', you can use the delay block instead.
Cheers
0 commentaires
Voir également
Catégories
En savoir plus sur Sources dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!