Tapped delay function with varying size in Simulink

21 ビュー (過去 30 日間)
Swati Poduval
Swati Poduval 2020 年 5 月 20 日
Hello
I wanted to know if there a way to give the "Number of delays" externally in the tapped delay function.
My idea is, the user should be able to connect an input port and this port gives the number of delays that the tapped function needs to have. So as to make it dynamic and not static where I set the number of delays during development phase itself.
(Setting parameters of the tapped delay function in simulink externally)
Thanks

採用された回答

Jonas
Jonas 2020 年 5 月 26 日
Hi Swati
I have tested a few things and I don't think it is an easy problem to solve.
I have personally never used the Tapped Delay - and I don't know why you need it in your specific application - but the issue I see is that the output dimension depends on the number of delays you put into the dialog. If you enter 4, then the signal dimension of the output is 4. If you chose 7, the signal dimension if 7. That's why it is very difficult - I believe even impossible - to provide it as an input port.
One thing I was thinking about, is that the Unit delay block can have the delay length as an Input port. You can change this during simulation. But it will only output the input signal with the defined delay, it will not provide all other signals such as the Tapped Delay block does.
With kind regards,
Jonas
  4 件のコメント
Jonas
Jonas 2020 年 5 月 28 日
Please check attached for the Simulink model. I have saved it in version R2019a.
Swati Poduval
Swati Poduval 2020 年 5 月 29 日
Thanks,
Din't realise that the function i was trying to acheive using a tapped delay can also be implemented using the selector.
Cheers!

サインインしてコメントする。

その他の回答 (1 件)

Oscar de la Hoz
Oscar de la Hoz 2022 年 11 月 27 日
Hi Swati,
Try to use one variable in "Number of Delays" field.
In my case, I wanted "Number of Delays" to be equal to Simulation Time. So first I wrote the variable:
After that, create a Matlab function externally, with the algorithm of your input value and use Callbacks (in Model Explorer) to run the Matlab function (in my case, the variable was created when the model was run, so I used the function in InitFnc):
Matlab Script saved as "StopTime_InitF"
StopTime_1 = double(0);
My_model = get_param(0, 'CurrentSystem');
stop_time_as_str = get_param(My_model, 'StopTime');
StopTime_1 = str2double(stop_time_as_str);
The function will modify "StopTime_1" variable in Model Workspace just before running the model.
Then, "Number of Delays" has been modified externally.
I hope you can adapt this to your case.
Regards,
Oscar.
  1 件のコメント
Vu Hoang Thang Chau
Vu Hoang Thang Chau 2024 年 1 月 18 日
Hi Oscar,
I have a similar issue and worked this out before.
I think this mostly works if you stay with simulation or C code generation.
My application requires HDL generation and it is a pain to regenerate this all over again all the time using this method.
I'm using the Memory and Selector method as above.
Regards,
V.

サインインしてコメントする。

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by