Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

Using the `sympy` module in Python to compute a matrix multiplication involving symbols

$
0
0

My issue is given as follows:enter image description here

import sympy as spp = sp.symbols('p')I_p = sp.Identity(p)C = sp.BlockMatrix([[I_p, I_p], [I_p, -I_p]])Sigma_1 = sp.MatrixSymbol('Sigma_1', p, p)Sigma_2 = sp.MatrixSymbol('Sigma_2', p, p)Sigma = sp.BlockMatrix([[Sigma_1, Sigma_2], [Sigma_2, Sigma_1]])C_Sigma_C_transpose = C * Sigma * C.Tprint(C_Sigma_C_transpose)## Matrix([## [I,  I],## [I, -I]])*Matrix([## [Sigma_1, Sigma_2],## [Sigma_2, Sigma_1]])*Matrix([## [I,  I],## [I, -I]])

The result does not match the expected output. How can we correct it?


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>