Hi,
What I want to do is solve for the solution to a set of 5 equations:
When I enter the first equation like this:
(C1) eq1:v1=(1/(z-1))*(b1*vin - g1*v2 - c1*fb);
I get the following:
B1 vin - G1 v2 - C1 fb
B1 vin - G1 v2 - (EQ1 : v1 = -------------------------) fb
z - 1
(D1) v1 = -------------------------------------------------------
z - 1
Where I think I should have seen:
B1 vin - G1 v2 - c1 fb
(D1) v1 = -------------------------------------------------------
z - 1
What went wrong?
Of course, what I want to do (if I could get the above stuff to work) is to
enter 5 equations: eq1,eq2,eq3,eq4,eq5 and then solve them like this:
solve([eq1,eq2,eq3,eq4,eq5),[v1,v2,v3,v4,fb]); where each equation starts
with v2=.... v3=...v4=...fb=.....
how then do I direct the five solutions go into an array of 5 elements so
that I can only look at the one I am interested in?
Anyhow, I realize these are newbie questions, but, I hope someone can give
me a clue.
thanks
Paul