Transpose of a column vector
Hi, I've got a column vector and I need to transpose it. But when i do:
v=v.column()
it says column() takes at least 1 positional argument (0 given)
I've also tried doing v=Matrix([[1, 0, 0],[0, 1, 0], [0, 0, 1],])*v.column()
which worked before but still doesn't work.
What is the problem here?
Thank you