DolphinDB中是否有与repmat等效的功能?

时间:2019-03-11 07:03:54

标签: database dolphindb

该功能非常有用,在Matlab和Numpy中都受支持,但是我在DolphinDB帮助页面中找不到此功能。 DolphinDB中有任何等效功能吗?

1 个答案:

答案 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)