create changing size array simulink
7 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Prajit T R
on 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 Comments
See Also
Categories
Find more on Sources in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!