2つの行列のクロネッカー合計を計算する


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

IaおよびIbは、それぞれおよびの次元を持つ単位行列です。そして、正方行列です。なおし、異なるサイズのものとすることができます。ABABAB

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)

2人の正方行列が与えられ、AそしてB、二つの行列のクロネッカー和を計算します。

  • 行列のサイズは少なくともになり2-by-2ます。最大サイズは、コンピューター/言語がデフォルトで処理できるものですが、最小5-by-5入力(5 MB出力)です。
  • すべての入力値は負でない整数になります
  • クロネッカー合計またはクロネッカー積を計算する組み込み関数は許可されていません
  • 一般的には、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;"/€;/

入力は2つの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 2016

5

CJam、40 39 38バイト

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

入力フォーマットは、2Dリストを含みAB2Dリストとして、例えば

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

出力形式は、単一のCJamスタイルの2Dリストです。

テストスイート。(より読みやすい出力形式で。)

説明

このコードは、複合(または中置)演算子の演習です。これらは一般的にアレイ操作に役立ちますが、この課題はそれらの必要性を悪化させました。ここに簡単な概要があります:

  • fスタック上のリストと何かを期待し、次の二項演算子をリストにマッピングし、他の要素を2番目の引数として渡します。例えば[1 2 3] 2 f*2 [1 2 3] f*両方が与える[2 4 6]。両方の要素がリストの場合、最初の要素はマップされ、2番目の要素は2項演算子をカリー化するために使用されます。
  • :には2つの用途があります。それに続く演算子が単項の場合、これは単純なマップです。たとえば、[1 0 -1 4 -3] :z[1 0 1 4 3]z数値の係数を取得します。後続の演算子がバイナリの場合、これは代わりに演算子を折りたたみます。例えば[1 2 3 4] :+です10
  • .二項演算子をベクトル化します。引数として2つのリストを想定し、対応するペアに演算子を適用します。例えば[1 2 3] [5 7 11] .*を与える[5 14 33]

ことに注意してください:自体は常に単項演算子であり、一方、fそして.自身が常に二項演算子です。これらは任意にネストできます(適切なアリティがある場合)。それが私たちがやることです...

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で使用した中で最も長い(複合)演算子かもしれません... 1 バイト多いのですが、さらにおかしくなるかもしれません9Yb2/Q~f.{\{,,_ff=}&}::ffff*:::.+::~:..+p(そして、ええ、ゴルフが終わったら説明を追加します)。
マーティンエンダー

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

行列の1つが特異な場合、行列の除算は失敗します。たとえば(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)...)

オンラインでお試しください!

使い方

  • 行列に対してA及びBmap(a->a*B,A')クロネッカー積の演算A⊗Bを

    結果は、Bの次元をもつ行列ブロックのベクトルです。

    行列は列優先で格納されるため、Aを(で')転置する必要があります。

  • 以来、ビット単位NOT 2の補数を満たすアイデンティティと〜N = - (N + 1)すべての整数についてのn、我々は持っている- 〜-n = - (〜(-n))= - (( - n)は、+ 1) = 1-nなので、-〜-0 = 1および-〜-1 = 0です。

    この方法は、匿名関数は、i->map(a->a*B^i,A'^-~-i)に上記地図適用B⁰(有する恒等行列Bの寸法)及びA 1 = A I = 0を、とするA⁰場合、私は1を=

  • sum(i->map(a->a*B^i,A'^-~-i),0:1)上記の無名関数を使用して{0,1}を合計し、クロネッカー合計A⊕BA¹⊗B⁰+A⁰⊗B¹として計算します。

    結果は、Bの次元をもつ行列ブロックのベクトルです。

  • sum(A^0)Aの次元の単位行列のすべてのエントリの合計を計算します。以下のためのN×N行列A、この収率は、N

  • 最後に、A⊕Bhvcat(sum(A^0),sum(i->map(a->a*B^i,A'^-~-i),0:1)...)を形成する行列ブロックを連結します。

    最初の引数nを使用してn個の行列ブロックを水平方向にhvcat連結し、結果の(大きい)ブロックを垂直方向に連結します。


0

Ruby、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

JavaScript(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.