how to convert file.m into block in Simulink ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Henry Buck
am 3 Mär. 2016
Kommentiert: Henry Buck
am 4 Mär. 2016
hi,
I wrote a function that produce 40 binary bits vector according to another 20 bits vector. In Matlab it works ok.
I want to convert it into a blockqmodel in Simulink.
Anybody knows how to do it ?
for example:
function gate_h = gate_array(I_H, indx_h)
no_cells = 20;
if(I_H > 0)
TMP_reg = [zeros(1, no_cells-indx_h), ones(1, indx_h)];
else
TMP_reg = [ones(1, indx_h), zeros(1, no_cells-indx_h)];
end
bitpatterns = {[0 1], [1 0]};
gate_h = cell2mat(bitpatterns(TMP_reg + 1));
Thanks, Henry
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 4 Mär. 2016
Try using the following as a MATLAB Function block
function gate_h = gate_array(I_H, indx_h)
no_cells = 20;
gate_h = zeros(1, no_cells * 2);
gate_h(1:2:indx_h*2) = 1;
gate_h(indx_h*2+1:2:no_cells*2-1) = 1;
if I_H > 0
gate_h = 1 - gate_h;
end
5 Kommentare
Weitere Antworten (1)
Rick Rosson
am 4 Mär. 2016
Have you tried using the MATLAB Function block? It's in the User Defined Functions sub-library in base Simulink.
2 Kommentare
Siehe auch
Kategorien
Mehr zu Simulink Functions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!