I have x(t) defined as:
x(t) = Symbol::subScript(x,0) + Rb*`φ`(t)
I want to write the derivative of phi(t) in terms of x(t). When I try
diff(`φ`(t),t)
it doesn't substitute from the x(t) equation.
I have x(t) defined as:
x(t) = Symbol::subScript(x,0) + Rb*`φ`(t)
I want to write the derivative of phi(t) in terms of x(t). When I try
diff(`φ`(t),t)
it doesn't substitute from the x(t) equation.
Note, that for MuPAD assignments only happens when you use
a:=1and not witha=1.So you should write
instead. But then
only gives \begin{align} \frac{\partial}{\partial t} \phi(t)\end{align}
However, it works the other way around
Then you can use
to get \begin{align} \frac{\frac{\partial}{\partial t} x(t)}{Rb} \end{align}