두 행렬의 크로네 커 합을 계산


9

아래의 예에서, A그리고 B2 바이 2 행렬들 수 있고, 행렬은 하나의 인덱스이다 것이다.

크로네 커의 제품은 다음과 같은 속성이 있습니다 :

A⊗B =  A(1,1)*B   A(1,2)*B
        A(2,1)*B   A(2,2)*B

     =  A(1,1)*B(1,1)   A(1,1)*B(1,2)   A(1,2)*B(1,1)   A(1,2)*B(1,2)
        A(1,1)*B(2,1)   A(1,1)*B(2,2)   A(1,2)*B(2,1)   A(1,2)*B(2,2)
        A(2,1)*B(1,1)   A(2,1)*B(1,2)   A(2,2)*B(1,1)   A(2,2)*B(1,2)
        A(2,2)*B(2,1)   A(2,2)*B(1,2)   A(2,2)*B(2,1)   A(2,2)*B(2,2)

크로네 커의 합은 다음과 같은 속성이 있습니다 :

A⊕B = A⊗Ib + Ia⊗B

IaIb있는 아이덴티티 행렬 의 치수 AB각각이. A그리고 B제곱 행렬입니다. 그 주 AB다른 크기의 수 있습니다.

A⊕B =  A(1,1)+B(1,1)  B(1,2)         A(1,2)         0
        B(2,1)         A(1,1)+B(2,2)  0              A(1,2)
        A(2,1)         0              A(2,2)+B(1,1)  B(1,2)
        0              A(2,1)         B(2,1)         A(2,2)+B(2,2)

두 정사각형 행렬을 감안할 때, A그리고 B, 두 행렬의 크로네 커의 합계를 계산합니다.

  • 행렬의 크기는 최소한 2-by-2입니다. 최대 크기는 컴퓨터 / 언어가 기본적으로 처리 할 수있는 크기이지만 최소 5-by-5입력 (5MB 출력)입니다.
  • 모든 입력 값은 음이 아닌 정수입니다.
  • 크로네 커 합계 또는 크로네 커 제품을 계산하는 내장 함수는 허용되지 않습니다
  • 일반적으로 : I / O 형식, 프로그램 및 기능, 허점 등에 관한 표준 규칙

테스트 사례 :

A =
     1     2
     3     4
B =
     5    10
     7     9

A⊕B =
     6    10     2     0
     7    10     0     2
     3     0     9    10
     0     3     7    13

----

A =
    28    83    96
     5    70     4
    10    32    44
B =
    39    19    65
    77    49    71
    80    45    76

A⊕B =
    67    19    65    83     0     0    96     0     0
    77    77    71     0    83     0     0    96     0
    80    45   104     0     0    83     0     0    96
     5     0     0   109    19    65     4     0     0
     0     5     0    77   119    71     0     4     0
     0     0     5    80    45   146     0     0     4
    10     0     0    32     0     0    83    19    65
     0    10     0     0    32     0    77    93    71
     0     0    10     0     0    32    80    45   120

----

A =
    76    57    54
    76     8    78
    39     6    94
B =
    59    92
    55    29

A⊕B =
   135    92    57     0    54     0
    55   105     0    57     0    54
    76     0    67    92    78     0
     0    76    55    37     0    78
    39     0     6     0   153    92
     0    39     0     6    55   123

답변:


2

젤리 , 26 21 20 19 바이트

æ*9Bs2¤×€€/€S;"/€;/

입력은 두 개의 2D 목록이며, 출력은 단일 2D 목록입니다. 온라인으로 사용해보십시오! 또는 모든 테스트 사례를 확인하십시오 .

작동 원리

æ*9Bs2¤×€€/€S;"/€;/  Main link.
                     Argument: [A, B] (matrices of dimensions n×n and m×m)

      ¤              Evaluate the four links to the left as a niladic chain.
  9B                 Convert 9 to base 2, yielding [1, 0, 0, 1].
    s2               Split into sublists of length 2, yielding [[1, 0], [0, 1]].
æ*                   Vectorized matrix power.
                     This yields [[A¹, B⁰], [A⁰, B¹]], where B⁰ and A⁰ are the
                     identity matrices of dimensions m×m and n×n.
          /€         Reduce each pair by the following:
        €€             For each entry of the first matrix:
       ×                 Multiply the second matrix by that entry.
            S        Sum the two results, element by element.
                     This yields the Kronecker sum, in form of a n×n matrix of
                     m×m matrices.
               /€    Reduce each row of the outer matrix...
             ;"        by zipwith-concatenation.
                     This concatenates the columns of the matrices in each row,
                     yielding a list of length n of n×nm matrices.
                 ;/  Concatenate the lists, yielding a single nm×nm matrix.

너무 많은 유로 ... 프로그램이 풍부합니다!
Luis Mendo

5

CJam, 40 39 38 바이트

9Yb2/q~f{.{_,,_ff=?}:ffff*::.+:~}:..+p

입력 형식은 예를 들어 2D 목록을 포함 A하고 있는 목록입니다.B

[[[1 2] [3 4]] [[5 10] [7 9]]]

출력 형식은 단일 CJam 스타일 2D 목록입니다.

테스트 스위트. (더 읽기 쉬운 출력 형식으로)

설명

이 코드는 복합 (또는 중위) 연산자의 실습입니다. 이것들은 일반적으로 배열 조작에 유용하지만,이 과제는 그것들의 필요성을 악화 시켰습니다. 다음은 간단한 개요입니다.

  • f스택에 목록과 다른 것을 기대하고 다음 이진 연산자를 목록에 매핑 하여 다른 요소를 두 번째 인수로 전달합니다. 예 [1 2 3] 2 f*2 [1 2 3] f*모두주고 [2 4 6]. 두 요소가 모두 목록이면 첫 번째 요소가 매핑되고 두 번째 요소는 이진 연산자를 카레하는 데 사용됩니다.
  • :두 가지 용도로 사용됩니다. 뒤에 오는 연산자가 단항 인 경우 간단한 맵입니다. 예는 [1 0 -1 4 -3] :z[1 0 1 4 3]경우, z숫자의 계수를 가져옵니다. 뒤에 오는 연산자가 이진이면 연산자가 대신 접 힙니다 . 예를 들면 [1 2 3 4] :+이다 10.
  • .이진 연산자를 벡터화합니다. 두 목록을 인수로 예상하고 연산자를 해당 쌍에 적용합니다. 예 [1 2 3] [5 7 11] .*를 들어 [5 14 33].

:자체는 항상 단항 연산자이고 f, .그 자체는 항상 이항 연산자입니다. 이들은 임의로 중첩 될 수 있습니다 (올바른 arities가있는 경우). 그리고 그것이 우리가 할 일입니다 ...

9Yb      e# Push the binary representation of 9, i.e. [1 0 0 1].
2/       e# Split into pairs, i.e. [[1 0] [0 1]]. We'll use these to indicate
         e# which of the two inputs we turn into an identity matrix.
q~       e# Read and evaluate input, [A B].
f{       e# This block is mapped over the [[1 0] [0 1]] list, also pushing
         e# [A B] onto the stack for each iteration.
  .{     e#   The stack has either [1 0] [A B] or [0 1] [A B]. We apply this
         e#   block to corresponding pairs, e.g. 1 A and 0 B.
    _,   e#     Duplicate the matrix and get its length/height N.
    ,_   e#     Turn into a range [0 1 ... N-1] and duplicate it.
    ff=  e#     Double f on two lists is an interesting idiom to compute an
         e#     outer product: the first f means that we map over the first list
         e#     with the second list as an additional parameter. That means for
         e#     the remaining operator the two arguments are a single integer
         e#     and a list. The second f then maps over the second list, passing
         e#     in the the number from the outer map as the first parameter.
         e#     That means the operator following ff is applied to every possible
         e#     pair of values in the two lists, neatly laid out in a 2D list.
         e#     The operator we're applying is an equality check, which is 1
         e#     only along the diagonal and 0 everywhere else. That is, we've
         e#     created an NxN identity matrix.
    ?    e#     Depending on whether the integer we've got along with the matrix
         e#     is 0 or 1, either pick the original matrix or the identity.
  }
         e#   At this point, the stack contains either [A Ib] or [Ia B]. 
         e#   Note that A, B, Ia and Ib are all 2D matrices.
         e#   We now want to compute the Kronecker product of this pair.
  :ffff* e#   The ffff* is the important step for the Kronecker product (but
         e#   not the whole story). It's an operator which takes two matrices
         e#   and replaces each cell of the first matrix with the second matrix
         e#   multiplied by that cell (so yeah, we'll end up with a 4D list of
         e#   matrices nested inside a matrix).
         e#   The leading : is a fold operation, but it's a bit of a degenerate
         e#   fold operation that is only used to apply the following binary operator
         e#   to the two elements of a list.
         e#   Now the ffff* works essentially the same as the ff= above, but
         e#   we have to deal with two more dimensions now. The first ff maps
         e#   over the cells of the first matrix, passing in the second matrix
         e#   as an additional argument. The second ff then maps over the second
         e#   matrix, passing in the cell from the outer map. We multiply them
         e#   with *.
         e#   Just to recap, we've essentially got the Kronecker product on the
         e#   stack now, but it's still a 4D list not a 2D list.
         e#   The four dimensions are:
         e#     1. Columns of the outer matrix.
         e#     2. Rows of the outer matrix.
         e#     3. Columns of the submatrices.
         e#     4. Rows of the submatrices.
         e#   We need to unravel that into a plain 2D matrix.
  ::.+   e#   This joins the rows of submatrices across columns of the outer matrix.
         e#   It might be easiest to read this from the right:
         e#     +    Takes two rows and concatenates them.
         e#     .+   Takes two matrices and concatenates corresponding rows.
         e#     :.+  Takes a list of matrices and folds .+ over them, thereby
         e#          concatenating the corresponding rows of all matrices.
         e#     ::.+ Maps this fold operation over the rows of the outer matrix.
         e#   We're almost done now, we just need to flatten the outer-most level
         e#   in order to get rid of the distinction of rows of the outer matrix.
  :~     e#   We do this by mapping ~ over those rows, which simply unwraps them.
}
         e# Phew: we've now got a list containing the two Kronecker products
         e# on the stack. The rest is easy, just perform pairwise addition.
:..+     e# Again, the : is a degenerate fold which is used to apply a binary
         e# operation to the two list elements. The ..+ then simply vectorises
         e# addition twice, such that we add corresponding cells of the 2D matrices.
p        e# All done, just pretty-print the matrix.

fffffffffff 지구에 ... 난 당신이 결국 그것을 설명 할 정도로 골프가 살아남을 무슨 희망 : P
FryAmTheEggman

@FryAmTheEggman :ffff*은 내가 CJam에서 사용했던 가장 긴 (복합) 연산자 일 수 있습니다 ... 하나 이상의 바이트에 대해서는 더 미친 듯이 갈 수 9Yb2/Q~f.{\{,,_ff=}&}::ffff*:::.+::~:..+p있습니다.
Martin Ender

4

J- 38 33 31 바이트

i=:=@i.@#
[:,./^:2(*/i)+(*/~i)~

용법

   f =: [:,./^:2(*/i)+(*/~i)~
   (2 2 $ 1 2 3 4) f (2 2 $ 5 10 7 9)
6 10 2  0
7 10 0  2
3  0 9 10
0  3 7 13
   (3 3 $ 28 83 96 5 70 4 10 32 44) f (3 3 $ 39 19 65 77 49 71 80 45 76)
67 19  65  83   0   0 96  0   0
77 77  71   0  83   0  0 96   0
80 45 104   0   0  83  0  0  96
 5  0   0 109  19  65  4  0   0
 0  5   0  77 119  71  0  4   0
 0  0   5  80  45 146  0  0   4
10  0   0  32   0   0 83 19  65
 0 10   0   0  32   0 77 93  71
 0  0  10   0   0  32 80 45 120
   (3 3 $ 76 57 54 76 8 78 39 6 94) f (2 2 $ 59 92 55 29)
135  92 57  0  54   0
 55 105  0 57   0  54
 76   0 67 92  78   0
  0  76 55 37   0  78
 39   0  6  0 153  92
  0  39  0  6  55 123

행렬 중 하나가 특이한 경우 행렬 나누기를 사용할 수 없습니다. 예를 들어 (2 2 $ 1 2 3 4) f (2 2 $ 1 1 1 1)도메인 오류가 발생합니다.
Dennis

@ 데니스 좋은 캐치, 난 임의의 값에 대해서만 테스트했다 ? 4 4 $ 100. dyad compose x f&g y = (g x) f (g y)또는 다른 것을 사용할 수있는 방법이 있는지 확실하지 않습니다 .
마일

2

줄리아, 60 59 58 56 바이트

A%B=hvcat(sum(A^0),sum(i->map(a->a*B^i,A'^-~-i),0:1)...)

온라인으로 사용해보십시오!

작동 원리

  • 행렬 들어 및 B , 크로네 커 제품 계산 A⊗B를 .map(a->a*B,A')

    결과는 B 차원의 행렬 블록으로 구성된 벡터입니다 .

    행렬은 열 주요 순서로 저장되므로 A (with ') 를 바꿉니다 .

  • 2의 보수를 갖는 비트 NOT 은 모든 정수 n에 대한 항등 성 ~ n =-(n + 1) 을 만족시키기 때문에 -~ -n =-(~ (-n)) =-((-n) + 1) = 1-n 이므로 -~ -0 = 1-~ -1 = 0 입니다.

    이런 식으로 익명 함수 i->map(a->a*B^i,A'^-~-i)는 위의 맵을 B⁰ ( B 의 차원을 가진 항등 행렬 )에 적용하고 i = 0 일 때 A¹ = A , i = 1 일A⁰에 적용 합니다.

  • sum(i->map(a->a*B^i,A'^-~-i),0:1)위에 합 {0,1} 크로네 합 계산 상기 익명 기능, A⊕B 같은 A¹⊗B⁰ +를 A⁰⊗B¹ .

    결과는 B 차원의 행렬 블록으로 구성된 벡터입니다 .

  • sum(A^0)A 의 항등 행렬의 모든 항목의 합을 계산 합니다. 들면 N × N 행렬 , 수율이 없음 .

  • 마지막으로 A⊕Bhvcat(sum(A^0),sum(i->map(a->a*B^i,A'^-~-i),0:1)...) 를 형성하는 행렬 블록을 연결합니다 .

    제 인수와 N , hvcat연접 N 가로 매트릭스 블록 수직 결과 (더 큰) 블록.


0

루비, 102

->a,b{r=0..-1+a.size*q=b.size
r.map{|i|r.map{|j|(i/q==j/q ?b[i%q][j%q]:0)+(i%q==j%q ?a[i/q][j/q]:0)}}}

테스트 프로그램에서

f=->a,b{r=0..-1+a.size*q=b.size
r.map{|i|r.map{|j|(i/q==j/q ?b[i%q][j%q]:0)+(i%q==j%q ?a[i/q][j/q]:0)}}}

aa =[[1,2],[3,4]]
bb =[[5,10],[7,9]]
f[aa,bb].each{|e|p e}
puts

aa =[[28,83,96],[5,70,4],[10,32,44]]
bb =[[39,19,65],[77,49,71],[80,45,76]]
f[aa,bb].each{|e|p e}
puts

aa =[[76,57,54],[76,8,78],[39,6,94]]
bb =[[59,92],[55,29]]
f[aa,bb].each{|e|p e}
puts

입력으로 2 개의 2D 배열이 필요하고 2D 배열을 반환합니다.

이를 수행하는 더 좋은 방법이있을 것입니다. 반복을 피하기 위해 함수 사용; 단일 루프를 사용하여 출력을 인쇄합니다. 나중에 살펴볼 것입니다.


0

자바 스크립트 (ES6), 109

다른 도전 에 대한 답을 바탕으로

(a,b)=>a.map((a,k)=>b.map((b,i)=>a.map((y,l)=>b.map((x,j)=>r.push(y*(i==j)+x*(k==l))),t.push(r=[]))),t=[])&&t

테스트

f=(a,b)=>a.map((a,k)=>b.map((b,i)=>a.map((y,l)=>b.map((x,j)=>r.push(y*(i==j)+x*(k==l))),t.push(r=[]))),t=[])&&t

console.log=x=>O.textContent+=x+'\n'

function show(label, mat)
{
  console.log(label)
  console.log(mat.join`\n`)
}

;[ 
  {a:[[1,2],[3,4]], b:[[5,10],[7,9]]},
  {a:[[28,83,96],[5,70,4],[10,32,44]], b:[[39,19,65],[77,49,71],[80,45,76]]},
  {a:[[76,57,54],[76,8,78],[39,6,94]], b:[[59,92],[55,29]]}
].forEach(t=>{
  show('A',t.a)  
  show('B',t.b)
  show('A⊕B',f(t.a,t.b))
  show('B⊕A',f(t.b,t.a))  
  console.log('-----------------')
})
<pre id=O></pre>

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.