After taking the time derivative of a symbolic expression, how do you then differentiate that new expression with respect to another variable's time derivative?
13 次查看(过去 30 天)
显示 更早的评论
I apologize for such a poorly worded question, but I'm not quite sure how else to word it.
You're given, x and y, both symbolic variables as a function of time. y is also a function of x. You determine the time derivative of y, ydot. xdot also appears in ydot because y is a function of x, and x is a function of time. How do you then differentiate ydot with respect to xdot?
Here's my code:
syms y x(t) t
y = sin(x);
ydot = diff(y,t);
diff(ydot,D(x)(t))
I've also tried this method:
syms y x(t) t
y = sin(x);
ydot = diff(y,t);
syms Dx
ydot = subs(ydot,sym('D(x)'),Dx);
diff(ydot,Dx)
But that gives me an output of:
ans(t) = 0
The answer should be cos(x(t))
0 个评论
采纳的回答
Walter Roberson
2013-8-9
No. MuPAD can only differentiate with respect to a variable, not with respect to a function.
1 个评论
Dominic
2023-3-5
You have to create the general diff function for partial differentiation. You can perform this using the limit definition of the derivative with an h value as close to 0 as possible. You can program in the algebraic steps to simplification and then return the resultant expression. This will work for any type of function assuming the derivative is well defined.
更多回答(1 个)
Paul
2023-3-5
Check out functionalDerivative
syms y x(t) t
y = sin(x);
ydot = diff(y,t)
syms Dx(t)
ydot(t) = subs(ydot,diff(x,t),Dx(t))
functionalDerivative(ydot,Dx(t))
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!