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.
たとえば、配列がある場合
[1, 2, 1]
そして、長さの4倍の新しい配列を取得したい
[1,1,1,1,2,2,2,2,1,1,1,1]
どうすればいいですか?
これがnumpy.repeat目的です。
numpy.repeat
>>> x = numpy.array([1, 2, 1]) >>> numpy.repeat(x, 4) array([1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1])