Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python で疑似ランダム バイナリ シーケンス(prbs) 信号を作成するにはどうすればよいですか?
>>> from random import choice >>> def prbs(): ... while True: ... yield choice([False, True])