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 vues (au cours des 30 derniers jours)
((100-Vc)/8)+7+((Vc-0)/6)=0
Vc =

Réponses (1)

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

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by