scalar^[vector]?
I feel really stupid like this should be obvious, but I can't figure out how to do it.
v = vector([1,2,3])
2^v
should give me
[2, 4, 8]
I can't find any other way to do this without writing a function.