| Author |
Comment/Response |
Aaron Honecker
|
09/16/00 08:37am
>How do you make a two dimensional vector from two one dimensional vectors. Say vector A ={x1,...,xn} and B = {y1,...,yn} and I want to make a vector C = {[x1,y1],...,[xn,yn]}. Any help would be greatly appreciated.
One of the easiest ways is
C = Transpose[{A,B}]
URL: , |
|