| 1 | initial version |
It seems that a vector doesn't know if it is a row or a column vector. When you have a vector such as
v = vector((uniform(-10,10),uniform(-10,10),uniform(-10,10)))
then
v.row()
and
v.column()
give it to you as row or column vectors. This must have been a change made to sage since your notebook was created. So to solve your problem, remove the transpose and relpace it with row or column if necessary.
| 2 | No.2 Revision |
It seems that a vector doesn't know if it is a row or a column vector. When you have a vector such as
v = vector((uniform(-10,10),uniform(-10,10),uniform(-10,10)))
then v.row()
and v.column()
give it to you as row or column vectors. This must have been a change made to sage since your notebook was created. So to solve your problem, remove the transpose and relpace it with row or column if necessary.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.