How to make an input that can randomly produce +1 and -1 for every second?
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Hello there,
Just want to know how could I make an input that produces +1 and -1 for every n seconds randomly. Any suggestions for Matlab or Simulink would be appreciated.
Many thanks,
Réponses (3)
Andrew Newell
le 14 Fév 2011
while true
randint(1)*2-1
pause(n)
end
Sean de Wolski
le 14 Fév 2011
%For a 1x10 vector
sign(rand(1,10)-.5).*ones(1,10)
Paulo Silva
le 14 Fév 2011
0 votes
Simulink
|random number (def. set.)|--|gain (10000)|--|saturation (-1 to 1)|-->output
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!