I want to connect two nodes (n4 and n10) as given in figure
,
how may I do it?
\begin{figure}
\begin{center}
\begin{tikzpicture}[font=\sffamily,boxed/.style={minimum width=1.7cm,minimum height=1cm,draw,thick,text width=2.5cm,text centered},node distance=.4cm]
\begin{scope}[local bounding box=upper]
\begin{scope}[start chain=1 going below,every join/.style={-latex,thick},frm/.style={boxed,on chain=1,join}]
\node[on chain=1](n0) {\scriptsize Training Sequence};
\node[frm](n3) {\scriptsize Construct dhjkfshfkjsf cardinality};
\node[frm](n4) {\scriptsize feature Construction with respect to each set };
\end{scope}
\node[boxed,right=0.7cm of n3] (n10) {\scriptsize Train and construct GAN Model with GEI pairs};
\node at (n0-|n10) (n9) {\scriptsize Test Sequence};
\node[boxed,right=0.7cm of n4] (n11) {\scriptsize feature Construction after fusing };
\end{scope}
\begin{scope}[every edge/.style={draw,-latex,thick}]
\path
(n9) edge (n10)
(n10) edge (n11)
(n4.east) edge (n10.west);
\end{scope}
\end{tikzpicture}
\end{center}
\caption{Block diagram of the proposed gait recognition approach}
\label{fig:block2}
\end{figure}


