| Author |
Comment/Response |
Henry Lamb
|
09/21/02 00:58am
First, isolate the variables g0 and b0 like this.
expr = ...
Collect[Expand[expr], {g0, b0}]
Then you can simplify the coefficients of g0 and b0 like this.
ReplacePart[%, Simplify[Coefficient[%, {g0, b0}]], {{1, 2}, {2, 2}}, {1, 2}]
URL: , |
|