Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Specific numbers generation Simulink

1 visualización (últimos 30 días)
Vasilis
Vasilis el 16 de Oct. de 2014
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello. Is there any way to generate a sequence of specific numbers with a frequency of generation f_s for example?

Respuestas (2)

Iain
Iain el 16 de Oct. de 2014
Matlab code for it would be something like... :
listofnumbers = [1 4 7 9];
weight = [1 2 3 4]; % weights, not frequencies... - 9 should appear 4x more than 1, 7 should be 3x, 4 should be 2x...
cw = cumsum(weight);
cw = cw./cw(end);
for i = 1:10
random = rand(1,1);
selected = listofnumbers(min(1:numel(listofnumbers) .* random < cw))
end
  1 comentario
Vasilis
Vasilis el 18 de Oct. de 2014
Thanks for the answer. Is there a way to do the same thing using a block in simulink ?

Orion
Orion el 18 de Oct. de 2014
Hi,
In the source library, use the Repeating Sequence Stair block.

Community Treasure Hunt

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

Start Hunting!

Translated by