[AW] Update summary to new version of helpers

This commit is contained in:
2025-09-26 12:19:22 +02:00
parent 6ac6ee24cc
commit 33f034fdd1
16 changed files with 57 additions and 50 deletions

View File

@@ -1,2 +1,9 @@
\newsection
\subsection{Rechnen mit Matrizen}
\begin{tables}{lcccc}{Name & Operation & Mult & Add & Komplexität}
Skalarprodukt & $x^H y$ & $n$ & $n - 1$ & $\tco{n}$ \\
Tensorprodukt & $x y^H$ & $nm$ & $0$ & $\tco{mn}$ \\
Matrix $\times$ Vektor & $Ax$ & $mn$ & $(n - 1)m$ & $\tco{mn}$ \\
Matrixprodukt & $AB$ & $mnp$ & $(n - 1)mp$ & $\tco{mnp}$ \\
\end{tables}
Das Matrixprodukt kann mit dem Strassen Algorithmus mithilfe der Block-Partitionierung in $\tco{n^{\log_2(7)}}$