简体   繁体   中英

Forming matrix from 2 vectors in Numpy, with repetition of 1 vector

Using numpy arrays I want to create such a matrix most economically: given

from numpy import array
a = array(a1,a2,a3,...,an)
b = array(b1,...,bm)

shall be processed to matrix M:

M = array([[a1,a2,b1,...,an],
           ...           ...,
           [a1,a2,bm,...,an]]

I am aware of numpy array's broadcasting methods but couldn't figure out a good way. Any help would be much appreciated,

cheers, Rob

You can use numpy.resize on a first and then add b 's items at the required indices using numpy.insert on the re-sized array:

In [101]: a = np.arange(1, 4)

In [102]: b = np.arange(4, 6)                                           

In [103]: np.insert(np.resize(a, (b.shape[0], a.shape[0])), 2, b, axis=1)                                                                       
Out[103]: 
array([[1, 2, 4, 3],                                                    
       [1, 2, 5, 3]])  

You can use a combination of numpy.tile and numpy.hstack functions.

M = numpy.repeat(numpy.hstack(a, b), (N,1))

I'm not sure I understand your target matrix, though.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM