Question: Need to index a vector to the summing variable of a sum.

To simplify, I will use some of my test code, but I need to use a vector index within a sum. 
m=Vector[column](3, [1, 1, 1]);
sum(L[k], k = 1 .. 3) ;

returns "Error, bad index into Vector" 
is there a way around this problem?

Please Wait...