how to solve for a variable in an equation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vasudeo Samant
el 29 de En. de 2019
Comentada: madhan ravi
el 29 de En. de 2019
d=20;
Fc= 65*(4*3/4)+50*(c-3/4);
Ft= 65*(6*1/4)+50*(d-c-1/4);
% I want to solve the equation for c using condition Fc=Ft can anyone help with this
it is a equation with unknown
0 comentarios
Respuesta aceptada
madhan ravi
el 29 de En. de 2019
doc solve
1 comentario
madhan ravi
el 29 de En. de 2019
syms c
.... your code
Sol=solve(Fc==Ft) % at the end
Más respuestas (0)
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!