Math & Science ⇒ please help me input the column vector
please help me input the column vector
Now I'm trying to input a row vector * a column vector see,in the attachment in an align environment.
But I don't know how...
please give me some help
thank you so much
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
please help me input the column vector
Welcome to the LaTeX community.
Do you mean something like
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{bmatrix}
x_1 & x_2 & \cdots & x_n
\end{bmatrix}
\times
\begin{bmatrix}
y_1 \\ y_2 \\ \vdots \\ y_n
\end{bmatrix}
\]
\end{document}
Regards