LaTeX 矩阵


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


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

usepackage{amsmath}

矩阵表示方法为:

left[ egin{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}
ight]
left[ egin{matrix}
	x_{1} \
	x_{2} \ 
	x_{3} \
	vdots\
	x_{n}
end{matrix}
ight]  = 
left[ egin{matrix}
	d_{1} \
	d_{2} \ 
	d_{3} \
	vdots\
	d_{n}
end{matrix}
ight]

b1a20c1b2a3c2b3cn1an0bnx1x2x3xn=d1d2d3dn

原文地址:https://www.cnblogs.com/hehehaha/p/6332216.html