How to make an input that can randomly produce +1 and -1 for every second?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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,
Answers (3)
Andrew Newell
on 14 Feb 2011
while true
randint(1)*2-1
pause(n)
end
Sean de Wolski
on 14 Feb 2011
%For a 1x10 vector
sign(rand(1,10)-.5).*ones(1,10)
Paulo Silva
on 14 Feb 2011
0 votes
Simulink
|random number (def. set.)|--|gain (10000)|--|saturation (-1 to 1)|-->output
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!