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 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
((100-Vc)/8)+7+((Vc-0)/6)=0
Vc =
0 comentarios
Respuestas (1)
Torsten
el 9 de Mzo. de 2022
syms Vc
eqn = ((100-Vc)/8)+7+((Vc-0)/6)==0 ;
Vcnum = double(solve(eqn,Vc))
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!