friends, I have tried to set the following diagram with tikzpicture\node\child commands but I do not manage to draw it. Can you please assist me?
Thanks.
\documentclass[tikz,margin=2mm]{standalone}
\usetikzlibrary{trees,arrows}
\begin{document}
\tikzstyle{level 1}=[level distance=30mm, sibling distance=30mm]
\tikzstyle{level 2}=[level distance=30mm, sibling distance=15mm]
\tikzstyle{level 3}=[level distance=20mm]
\begin{tikzpicture}[grow=right,-,=angle 60]
%\begin{scope}[yshift=0]
\node {$f_{0,0}$}
child {node {$f_{2,2}$}
child {node {$f_{3,2}$}
child[-] {node{$x_{3}$}}
}
child {node{$f_{3,1}$}
child[-] {node{$x_{2}$}}
}
}
child {node {$f_{2,1}$}
child {node{$f_{3,2}$}
child[-] {node{$x_{1}$}}
}
child {node{$f_{3,1}$}
child[-] {node{$x_{0}$}}
}
};
%\end{scope}
\begin{scope}[yshift=-6cm]
\node {$f_{1,2}$}
child {node {$f_{2,2}$}
child {node {$f_{3,2}$}
child[-] {node{$x_{7}$}}
}
child {node {$f_{3,1}$}
child[-] {node{$x_{6}$}}
}
}
child {node {$f_{2,1}$}
child {node {$f_{3,2}$}
child[-] {node{$x_{5}$}}
}
child {node {$f_{3,1}$}
child[-] {node{$x_{4}$}}
}
};
\end{scope}
\end{tikzpicture}
\end{document}




matrix of math nodes. – Alan Munn Nov 30 '19 at 19:05