Re: ``flattening" systems of equations
- To: mathgroup@smc.vnet.net
- Subject: [mg10414] Re: ``flattening" systems of equations
- From: Hein Hundal <hundalhm@vicon.net>
- Date: Tue, 13 Jan 1998 02:07:17 -0500
- References: <69co6a$ent@smc.vnet.net>
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