该功能非常有用,在Matlab和Numpy中都受支持,但是我在DolphinDB帮助页面中找不到此功能。 DolphinDB中有任何等效功能吗?
答案 0 :(得分:1)
def repmatrix(m, rowRep, colRep){
rows = m.rows()
cols = m.columns()
newM = matrix(m.type(), rows*rowRep, cols*colRep)
for(i in 0 : rowRep){
for(j in 0 : colRep)
newM[(i*rows) : ((i+1)*rows), (j*cols) : ((j+1)*cols)] = m
}
return newM
}
a = matrix(1 2, 3 4)
m = repmatrix(a, 2, 3)