Re: problem with Part function
- To: mathgroup at smc.vnet.net
- Subject: [mg18194] Re: problem with Part function
- From: paulh at wolfram.com (P.J. Hinton)
- Date: Mon, 21 Jun 1999 22:50:36 -0400
- Organization: Wolfram Research, Inc.
- References: <7kho9q$qop@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In article <7kho9q$qop at smc.vnet.net>, "Casubolo Dario" <bubbola at workline.it> writes: > Just a little problem: > I've a matrix of zeros, say: > mat=Table[Table[0,{5}],{5}]; > then, I've a point in xy axys, > xy={3,3}; > now, I want the position {3,3} of matrix becomes 1; > if I write > mat[[xy]]=1; or mat[[{3,3}]]=1; it doesn't work; only mat[[3,3]]=1 > works, but I don't want rewrite all. > I think I've to use something like Map, Thread, Apply or so, but I don't > know what and how exactely; > please, someone help me. You can use Apply[Sequence, #]& to blow away the list structure. Here is an example. In[1]:= mat = Table[Table[0, {5}], {5}] Out[1]= {{0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}} In[2]:= mat[[Sequence @@ {3, 3}]] = 1 Out[2]= 1 In[3]:= mat Out[3]= {{0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}, {0, 0, 1, 0, 0}, {0, 0, 0, 0, 0}, {0, 0, 0, 0, 0}} -- P.J. Hinton Mathematica Programming Group paulh at wolfram.com Wolfram Research, Inc. Disclaimer: Opinions expressed herein are those of the author alone.