Solving for a missing variable, I'm trying to solve for the value for Vc, but not sure how to write the code for it.

2 views (last 30 days)
((100-Vc)/8)+7+((Vc-0)/6)=0
Vc =

Answers (1)

Torsten
Torsten on 9 Mar 2022
syms Vc
eqn = ((100-Vc)/8)+7+((Vc-0)/6)==0 ;
Vcnum = double(solve(eqn,Vc))

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!