Re: how to make myVec[v,3] to return {v_1, v_2, v_3} ?
- To: mathgroup at smc.vnet.net
- Subject: [mg75267] Re: how to make myVec[v,3] to return {v_1, v_2, v_3} ?
- From: Bill Rowe <readnewsciv at sbcglobal.net>
- Date: Mon, 23 Apr 2007 05:36:58 -0400 (EDT)
On 4/21/07 at 11:12 PM, tsariysk at craft-tech.com (T.Sariyski) wrote: >I want to define a function that takes a symbol and integer and >generates a vector e.g. myVec[v,3] returns {v_1, v_2, v_3}? I tried >Table[v_Subscript_i, {i, 1, 3}] >but it returns {v_i, v_i, v_i} Use proper Mathematica syntax, i.e., Table[Subscript[v,i], {i,3}] alternatively, there is Subscript[v,#]&/@Range[3] -- To reply via email subtract one hundred and four