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년 전 | 2
