generated from AAU-Dat/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* made most of giovannis corrections for the implementation chapter, not done though * rewrote the things giovanni wanted in preliminaries * added some text on how we do matrix multiplication * made runges comments
- Loading branch information
1 parent
a79b3e2
commit a804d8b
Showing
4 changed files
with
231 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,17 @@ | ||
\begin{tikzpicture}[node distance=1cm and 0.5cm] | ||
\node[c] (x) {$x_1$}; | ||
\node[c] (a) [below left=of x] {$y_1$}; | ||
\node[c] (b) [below left=of a] {$x_2$}; | ||
\node[c] (c) [below left=of b] {$y_2$}; | ||
\node[c] (d) [below right=of b] {$y_2$}; | ||
\node[c] (a) [below left=of x] {$x_2$}; | ||
\node[c] (b) [below right=of x] {$x_2$}; | ||
|
||
\node[t] (final-1) [below left=of c] {1}; | ||
\node[t] (final-2) [below right=of c] {2}; | ||
\node[t] (final-3) [right=of final-2] {3}; | ||
\node[t] (final-4) [right=of final-3] {4}; | ||
\node[t] (final-5) [right=of final-4] {0}; | ||
\node[t] (final-1) [below left=of a] {1}; | ||
\node[t] (final-2) [right=of final-1] {2}; | ||
\node[t] (final-4) [below right=of b] {4}; | ||
\node[t] (final-3) [left=of final-4] {3}; | ||
|
||
\draw[zeroarrow] (x) -- (a); | ||
\draw[onearrow] (x) -- (final-5); | ||
\draw[zeroarrow] (a) -- (b); | ||
\draw[zeroarrow] (b) -- (c); | ||
\draw[onearrow] (b) -- (d); | ||
\draw[zeroarrow] (c) -- (final-1); | ||
\draw[onearrow] (c) -- (final-2); | ||
\draw[zeroarrow] (d) -- (final-3); | ||
\draw[onearrow] (d) -- (final-4); | ||
\draw[onearrow] (a) -- (final-5); | ||
|
||
\draw[zeroarrow] (a) -- (final-1); | ||
\draw[onearrow] (a) -- (final-2); | ||
\draw[zeroarrow] (x) -- (b); | ||
\draw[onearrow] (b) -- (final-3); | ||
\draw[zeroarrow] (b) -- (final-4); | ||
\end{tikzpicture} |
Oops, something went wrong.