Tagged Questions
4
votes
2answers
189 views
How to build macros for vector-matrix operators?
Can anybody build macros for doing the following vector operations? Or are there already such macros? For example,
1) Example data: \def\a{(5,3,0)}
\def\b{(5,1,6)}
...
12
votes
1answer
1k views
Typesetting a Row Vector
In the question typesetting a column vector, a very nice solution was given for typesetting a column vector with an arbitrary number of rows. I am attempting to modify the code to produce row vectors ...
3
votes
4answers
2k views
vertically aligning vectors and matrices
What are your techniques to make what's below look better? Thanks.
\documentclass{article}
\usepackage{amsmath}
\newcommand{\ud}{\mathop{\mathrm{{}d}}\mathopen{}}
\begin{document}
...
17
votes
3answers
15k views
typesetting column vector
I would like to define a command which typesets a column vector.
For one vector I can have something like:
\left(
\begin{array}{c}
a\\
b\\
\end{array}
\right)
I would like the command to produce ...