First time here? Check out the FAQ!
answered 2013-09-21 19:15:28 +0100
You can use Python sequence indexing syntax, for which the index numbers start at zero: a=vector([1,2,3]);a[0] returns 1.
a=vector([1,2,3]);a[0]