Help
- To: mathgroup@smc.vnet.net
- Subject: [mg11115] Help
- From: Colin L C Fu <es2136@eng.warwick.ac.uk>
- Date: Sun, 22 Feb 1998 14:55:39 -0500
- Organization: Warwick University
Hiya,
I have 3 solutions for a which are
{a -> 32, a -> -22, a -> 49}.
I want to use the positive answer to sub in a folowing equation.
The code that I wrote is
aList = Re[Last/@Flatten[%]];
aList = Select[%, #>0 &];*)
For[
m = 1, m < size, m++, aList[[m]]
];
Howver, it doesnt seem to work the way I want.
Thanks
Colin