LaTeX 矩阵


本系列文章由 @YhL_Leo 出品,转载请注明出处。
文章链接: http://blog.csdn.net/yhl_leo/article/details/50054363


LaTeX 写矩阵,需要使用的包:

\usepackage{amsmath}

矩阵表示方法为:

\left[ \begin{matrix}
	b_{1}&c_{1}& & & &0 \\
	a_{2}&b_{2}&c_{2}& & & \\ 
	 &a_{3}&b_{3}&\ddots& &  \\
	 & &\ddots&\ddots&c_{n-1} & \\
	0& & & &a_{n}&b_{n}
\end{matrix}\right]
\left[ \begin{matrix}
	x_{1} \\
	x_{2} \\ 
	x_{3} \\
	\vdots\\
	x_{n}
\end{matrix}\right]  = 
\left[ \begin{matrix}
	d_{1} \\
	d_{2} \\ 
	d_{3} \\
	\vdots\\
	d_{n}
\end{matrix}\right]

b1a20c1b2a3c2b3cn1an0bnx1x2x3xn=d1d2d3dn

posted on 2015-11-26 12:36  疯子123  阅读(625)  评论(0编辑  收藏  举报

导航