I have a single line matrix made with TikZ:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\node [matrix,fill=white!20,draw=blue] (my matrix) at (3,2)
{
\node(a) {40}; & \node{AE}; & \node{B0}; & \node(b) {05}; & \node(b) {05};\\
};
\end{tikzpicture}
\end{document}
Is there a way to "twist" this matrix along a curve (I would like to illustrate something like a flow ...) and to "open it" at both ends?

replace ampersand withdoesn't work work for me. Are you using a recent CVS version? – Marc van Dongen Feb 26 '12 at 10:04\matrix [fill=white!20,draw=blue,matrix of nodes] (my matrix) {40 & AE & B0& 05 & 05 \\};. You don't need to enter\nodein each cell. Moreover, I don't thinkmatrixis the way to go but you can do that with text decorations. See manual Section 30.6 – percusse Feb 26 '12 at 10:17