我怎样才能用这种方式绘制隐马尔可夫模型

我怎样才能用这种方式绘制隐马尔可夫模型

在此处输入图片描述

在此处输入图片描述

我怎样才能用这种方式绘制隐马尔可夫模型,我不知道如何添加圆圈。

答案1

从...开始这个帖子,您只需要circle,draw在除第一和第五个之外的列中的单元格中添加节点即可。

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{amsmath}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\matrix[matrix of math nodes,column sep=2em,row
sep=4em,cells={nodes={circle,draw,minimum width=3em,inner sep=0pt}},
column 1/.style={nodes={rectangle,draw=none}},
column 5/.style={nodes={rectangle,draw=none}}] (m) {
\text{Markov process}: &
 X_0 & X_1 & X_2 & \cdots & X_{T-1}\\
\text{Observations}: & 
 \mathcal{O}_0 & \mathcal{O}_1 & \mathcal{O}_2 & \cdots & \mathcal{O}_{T-1}\\
};
\foreach \X in {2,3,4,5}
{\draw[-latex] (m-1-\X) -- (m-1-\the\numexpr\X+1) node[midway,above]{$A$};
\ifnum\X=5
\draw[-latex] (m-1-6) -- (m-2-6) node[pos=0.6,left]{$B$};
\else
\draw[-latex] (m-1-\X) -- (m-2-\X) node[pos=0.6,left]{$B$};
\fi}
\draw[dashed] ([yshift=1ex]m.east) -- ([yshift=1ex]m.east-|m-1-1.east);
\end{tikzpicture}
\end{document}

在此处输入图片描述

您可以按照通常的方式将其放入图中。如果您确实需要使用它\resizebox来重新缩放它,则需要使用ampersand replacemet

\documentclass{article}
\usepackage{tikz}
\usepackage{amsmath}
\usetikzlibrary{matrix}
\begin{document}
\begin{figure}
\centering
\resizebox{3in}{!}{\begin{tikzpicture}
 \matrix[matrix of math nodes,column sep=2em,row
  sep=4em,cells={nodes={circle,draw,minimum width=3em,inner sep=0pt}},
  column 1/.style={nodes={rectangle,draw=none}},
  column 5/.style={nodes={rectangle,draw=none}},
  ampersand replacement=\&] (m) {
 \text{Markov process}: \&
  X_0 \& X_1 \& X_2 \& \cdots \& X_{T-1}\\
 \text{Observations}: \& 
  \mathcal{O}_0 \& \mathcal{O}_1 \& \mathcal{O}_2 \& \cdots \& \mathcal{O}_{T-1}\\
 };
 \foreach \X in {2,3,4,5}
 {\draw[-latex] (m-1-\X) -- (m-1-\the\numexpr\X+1) node[midway,above]{$A$};
 \ifnum\X=5
 \draw[-latex] (m-1-6) -- (m-2-6) node[pos=0.6,left]{$B$};
 \else
 \draw[-latex] (m-1-\X) -- (m-2-\X) node[pos=0.6,left]{$B$};
 \fi}
 \draw[dashed] ([yshift=1ex]m.east) -- ([yshift=1ex]m.east-|m-1-1.east);
\end{tikzpicture}}
\caption{A hidden Markov model.}
\label{fig:HiddenMarkov}
\end{figure}
\end{document}

相关内容