Solve for a variable in terms of specific other variables
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aleem Andrew
el 23 de Feb. de 2021
Respondida: Walter Roberson
el 23 de Feb. de 2021
The derivative of eq1 below is diff(x(t), t) == diff(y(t), t). I am trying to use the solve function to solve for diff(y(t)) and the output should be diff(x(t)) but a message stating that Matlab is unable to find an explicit solution is displayed. How can you specify the value of diff(x(t)), for example diff(x(t)) = 5, so that the solve function will solve for diff(y(t)) as 5, or if the value is not specified the solve function should return diff(x(t)) rather than an empty sym?
syms x(t) y(t)
eq1 = x == y+2;
solve(diff(eq1),diff(y(t)))
0 comentarios
Respuesta aceptada
Walter Roberson
el 23 de Feb. de 2021
syms x(t) y(t)
eq1 = x == y+2;
deq = diff(eq1)
isolate(deq, diff(y))
subs(ans, diff(x),5)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Equation Solving en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!