|
[Date Index]
[Thread Index]
[Author Index]
Re: ``flattening" systems of equations
Try, Thread then Flatten.
In[3]:=
Thread /@ {a==b, {c,d}=={e,f}, g==h} //Flatten
Out[3]=
{a==b,c==e,d==f,g==h}
Cheers,
Hein Hundal
Prev by Date:
Re: ``flattening" systems of equations
Next by Date:
Re: ListPlot
Prev by thread:
Re: ``flattening" systems of equations
Next by thread:
How to draw full text in graphics
|