how can i create a delay block(like in simulink) with matlab code
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I do a FFT project, the data go in and delay for some clock to wait the next data and caculate butterfly. Example if i delay 8 clock then simulink generate 8 register(dff) and shift them every clock, and i want do that in matlab code to generate HDL code. Some one can help me? Thank you!
0 Commenti
Risposte (2)
Kiran Kintali
il 15 Ago 2017
Modificato: Walter Roberson
il 31 Mag 2021
delay in MATLAB can be modeled using persistent variable.
function y = fcn(u) % Unit delay implementation that maps to a register in hardware
persistent u_d;
if isempty(u_d)
% defines initial value driven by unit delay at time step 0
u_d = cast(0, 'like', u);
end
% return delayed input from last sample time hit
y = u_d;
% store the current input
u_d = u;
https://www.mathworks.com/matlabcentral/fileexchange/16100-modelling-registers-in-embedded-matlab you may want to check out the above post.
1 Commento
Conner Garcia
il 31 Mag 2021
this hasnt worked, the outputs are different. the link you sent i think there is an error when converting from Uint to a Fi object.
Vedere anche
Categorie
Scopri di più su Sources in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!