文章目录
- 1. kronecker sum
- python 代码
1. kronecker sum
A = [ 6 8 1 4 ] ; B = [ 5 3 7 6 ] ; \begin{equation} A=\begin{bmatrix}6&8\\\\1&4\end{bmatrix};B=\begin{bmatrix}5&3\\\\7&6\end{bmatrix}; \end{equation} A= 6184 ;B= 5736 ;
- kronecker sum:
A ⊕ B = A ⊗ I b + I a ⊗ B \begin{equation} A\oplus B=A\otimes I_b+I_a\otimes B \end{equation} A⊕B=A⊗Ib+Ia⊗B
A ⊕ B = [ 6 8 1 4 ] ⊗ [ 1 0 0 1 ] + [ 1 0 0 1 ] ⊗ [ 5 3 7 6 ] \begin{equation} A\oplus B=\begin{bmatrix}6&8\\\\1&4\end{bmatrix}\otimes \begin{bmatrix}1&0\\\\0&1\end{bmatrix}+\begin{bmatrix}1&0\\\\0&1\end{bmatrix}\otimes \begin{bmatrix}5&3\\\\7&6\end{bmatrix} \end{equation} A⊕B= 6184 ⊗ 1001 + 1001 ⊗ 5736
A ⊕ B = [ 6 0 8 0 0 6 0 8 1 0 4 0 0 1 0 4 ] + [ 5 3 0 0 7 6 0 0 0 0 5 3 0 0 7 6 ] = [ 11 3 8 0 7 12 0 8 1 0 9 3 0 1 7 10 ] \begin{equation} A\oplus B=\begin{bmatrix} 6&0&8&0\\\\ 0&6&0&8\\\\ 1&0&4&0\\\\ 0&1&0&4\end{bmatrix}+ \begin{bmatrix} 5&3&0&0\\\\ 7&6&0&0\\\\ 0&0&5&3\\\\ 0&0&7&6\end{bmatrix}=\begin{bmatrix} 11&3&8&0\\\\ 7&12&0&8\\\\ 1&0&9&3\\\\ 0&1&7&10\end{bmatrix} \end{equation} A⊕B= 6010060180400804 + 5700360000570036 = 1171031201809708310
python 代码
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# @FileName :kron_sum.py
# @Time :2024/12/4 19:14
# @Author :Jason Zhang
import torch
from torch import nntorch.manual_seed(4332)if __name__ == "__main__":run_code = 0# matrix_a = torch.randint(1, 100, (2, 2))matrix_a = torch.randperm(10)[:4].reshape(2, 2)matrix_b = torch.randperm(10)[:4].reshape(2, 2)my_eye = torch.eye(2)a_i = torch.kron(matrix_a, my_eye)b_i = torch.kron(my_eye, matrix_b)c_i = a_i + b_iprint(f"matrix_a=\n{matrix_a}")print(f"matrix_b=\n{matrix_b}")print(f"eye=\n{my_eye}")print(f"a_i=\n{a_i}")print(f"b_i=\n{b_i}")print(f"c_i=\n{c_i}")
- 结果:
matrix_a=
tensor([[6, 8],[1, 4]])
matrix_b=
tensor([[5, 3],[7, 6]])
eye=
tensor([[1., 0.],[0., 1.]])
a_i=
tensor([[6., 0., 8., 0.],[0., 6., 0., 8.],[1., 0., 4., 0.],[0., 1., 0., 4.]])
b_i=
tensor([[5., 3., 0., 0.],[7., 6., 0., 0.],[0., 0., 5., 3.],[0., 0., 7., 6.]])
c_i=
tensor([[11., 3., 8., 0.],[ 7., 12., 0., 8.],[ 1., 0., 9., 3.],[ 0., 1., 7., 10.]])