I have an equation to solve

1 view (last 30 days)
Vishal Dave
Vishal Dave on 11 Dec 2015
Edited: Walter Roberson on 11 Dec 2015
i1=(i0*(exp^(q*vco/k*t))-1)-(vco/rsh).
I have all the values except vco! How can I get values of vco

Answers (1)

Walter Roberson
Walter Roberson on 11 Dec 2015
Edited: Walter Roberson on 11 Dec 2015
syms vco
sol = solve(i1=(i0*(exp^(q*vco/k*t))-1)-(vco/rsh),vco);
The answer will be something like
(-k*lambertw(-i0*q*rsh*t*exp(-q*rsh*t*(i1+1)/k)/k)-q*rsh*t*(i1+1))/(q*t)
evaluated at whatever the values are of your variables.

Categories

Find more on Mathematics in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!