From 8bbc035c904791895e2f55245348b9f27af8ea9b Mon Sep 17 00:00:00 2001 From: Jan Aalmoes Date: Thu, 7 Nov 2024 11:36:14 +0100 Subject: initial commit --- tikz/ef.tex | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tikz/ef.tex (limited to 'tikz/ef.tex') diff --git a/tikz/ef.tex b/tikz/ef.tex new file mode 100644 index 0000000..9604d97 --- /dev/null +++ b/tikz/ef.tex @@ -0,0 +1,22 @@ +\begin{tikzpicture} + + \def \h{4} + + %Pipeline + \node[rectangle,draw=red] (s) at (2*\h,0) {Attribut sensible}; + \node[rectangle,draw=blue] (inf) at (0,0) {Classification}; + \node[rectangle,draw=blue] (att) at (\h,0) {Attaque}; + \draw[->,color=blue] (inf) to (att); + \draw[->,color=red] (att) to (s); + + %Ensembles + \node (c0) at (0,1) {$E=\{0,\cdots,m-1\}$}; + + \node (a0) at (2*\h,1) {$F=\{0,\cdots,n-1\}$}; + + \draw[->] (c0) to (a0); + + + +\end{tikzpicture} + -- cgit v1.2.3