Is there any other way to realize Simulink Block of "Tapped Delay" function?
Show older comments
I just want to realize some function ,store a series data into a array,just like this below:
double x;
double y[200];
int i=0;
step_interrupt(void)
{
y[i]=x;
i++;
if(i==200)
i=0;
}
So, I just realize it by Block of "Tapped Delay" in Discrete, like this <<http://xjtudownload.googlecode.com/files/1.jpg>>,but when I generated the code,it's so inefficiency,just like this:
32 void test_step(void)
33 {
34 int_T i;
35
36 /* S-Function (sfix_udelay): '<Root>/Tapped Delay' */
37 memcpy(&y[0], &test_DWork.TappedDelay_X[0], 200U * sizeof(real_T));
38
39 /* Update for S-Function (sfix_udelay): '<Root>/Tapped Delay' incorporates:
40 * Update for Inport: '<Root>/In1'
41 */
42 for (i = 0; i < 199; i++) {
43 test_DWork.TappedDelay_X[i] = test_DWork.TappedDelay_X[i + 1];
44 }
45
46 test_DWork.TappedDelay_X[199] = x;
47
48 /* End of Update for S-Function (sfix_udelay): '<Root>/Tapped Delay' */
49 }
I think some Block like "Delay" in Discrete Library have the Circular buffer function,except "Tapped Delay" Block. how can I realize it ?
Accepted Answer
More Answers (1)
You can try changing some of the optimizations in the configuration parameters to see if that changes the generated code at all. Otherwise, this may be the only way it is generated, in which case you should submit an enhancement request if you believe the circular method is better.
Furthermore, you could write an s-function of your own using the code you specified instead of the built in block.
Categories
Find more on Simulink Coder 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!