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 Ansichten (letzte 30 Tage)
((100-Vc)/8)+7+((Vc-0)/6)=0
Vc =

Antworten (1)

Torsten
Torsten am 9 Mär. 2022
syms Vc
eqn = ((100-Vc)/8)+7+((Vc-0)/6)==0 ;
Vcnum = double(solve(eqn,Vc))

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by