Michael Anderl a ?crit :
> output:
> [C1=2/3,C2=-4]
>
> how to access C1 and C2?
>
use list[index] to extract an element from a list, and the function rhs
to get the right hand side (lhs for left) of an equation :
rhs(%[1]);
gives 2/3 since it is the right hand side of the first term of the last
computed result (%)
This is C1.
Eric