Sep 19, 2006 #1 S STOIKOV Full Member level 4 Joined Nov 18, 2005 Messages 236 Helped 8 Reputation 16 Reaction score 2 Trophy points 1,298 Activity points 3,083 I'm trying to deduce the differential output current of a MOS differential pair, but have doubt in one step (showed in the picture). Could please give me some advise ? Thanks.
I'm trying to deduce the differential output current of a MOS differential pair, but have doubt in one step (showed in the picture). Could please give me some advise ? Thanks.
Sep 19, 2006 #2 W wpchan05 Full Member level 4 Joined Feb 16, 2006 Messages 213 Helped 20 Reputation 40 Reaction score 4 Trophy points 1,298 Activity points 2,392 By solving the quadratic equation in which Id1 is the only variable, you can get the result.
Sep 19, 2006 #3 S STOIKOV Full Member level 4 Joined Nov 18, 2005 Messages 236 Helped 8 Reputation 16 Reaction score 2 Trophy points 1,298 Activity points 3,083 ok thanks, now already got ID by hand with general quadratic formula. How can a variable be found in matlab by just intoducing the coefficients a,b,c of a quadratic equation, like this equation ?
ok thanks, now already got ID by hand with general quadratic formula. How can a variable be found in matlab by just intoducing the coefficients a,b,c of a quadratic equation, like this equation ?
Apr 25, 2008 #4 D drabos Full Member level 6 Joined Jan 3, 2006 Messages 397 Helped 45 Reputation 90 Reaction score 15 Trophy points 1,298 Activity points 3,769 for example: a=(a number); b=(a number); c=(a number); y=roots([a b c]) or y(1)=(-b+sqrt(b^2-4*a*c))/(2*a); y(2)=(-b-sqrt(b^2-4*a*c))/(2*a); As you wish
for example: a=(a number); b=(a number); c=(a number); y=roots([a b c]) or y(1)=(-b+sqrt(b^2-4*a*c))/(2*a); y(2)=(-b-sqrt(b^2-4*a*c))/(2*a); As you wish