|
[Date Index]
[Thread Index]
[Author Index]
Re: ReplacePart?
Scott Morrison wrote:
> I have a list of pairs of the form:
> gt={{3,5},{{},6},{7,{}},{{},{}},{{},56},{{},3}};
>
> The empty lists inside pairs are being used as placeholders. I want to
> replace these with the elements of b: b={a1,a2,a3,a4,a5,a6};
> hopefully resulting in the list
> {{3,5},{a1,6},{7,a2},{a3,a4},{a5,56},{a6,3}}
>
> I had thought that ReplacePart could do this, as it says:
> "ReplacePart[expr, new, pos, npos] replaces parts at positions pos in
> expr by
> parts at positions npos in new."
>
>
> I can't get this to work at all. If someone could explain how to do this
> sort of thing, using ReplacePart or otherwise, I would be most
> grateful.
Here is a simple solution.
In[1]:= b = {a1,a2,a3,a4,a5,a6};
In[2]:= gt = {{3,5},{{},6},{7,{}},{{},{}},{{},56},{{},3}};
In[3]:= n = 1;
In[4]:= gt /. {} :> b[[n++]]
Out[4]: {{3,5},{a1,6},{7,a2},{a3,a4},{a5,56},{a6,3}}
Note the use of :> i.e. RuleDelayed.
Cheers, Vittorio
Prev by Date:
Re: Questions on MultipleListPlot
Next by Date:
Re: Beginner: Latex file of the notebook
Prev by thread:
Re: ReplacePart?
Next by thread:
Re: ReplacePart?
|