Feeds
已回答
if we enter n rows and m colums and gets the output of 2n rows and 2m columns
Just choose your n and m A = [1 0 ; 0 1]; B = ones([n, m]); out = kron(A,B);
if we enter n rows and m colums and gets the output of 2n rows and 2m columns
Just choose your n and m A = [1 0 ; 0 1]; B = ones([n, m]); out = kron(A,B);
10 years 前 | 2
