defining generic function?

7 views (last 30 days)
Eduardo
Eduardo on 5 Mar 2011
Hello, here's a brief overview of my problem: I have to diff some ugly equations (lots of terms with cos and sin products) with variables x (position) xdot (speed). Is there anyway I can tell matlab that x and xdot is a function of time (t) so that it can do dx/dt symbolically?

Accepted Answer

Walter Roberson
Walter Roberson on 5 Mar 2011
You can either write all references to x and xdot as x(t) and xdot(t), or you can
neweqn = subs(eqn,{x,xdot},{sym('x(t)'),sym('y(t)')});
to effectively rewrite the equation after it is defined.
  1 Comment
Eduardo
Eduardo on 5 Mar 2011
Dang, such a simple solution! Thank you very much!

Sign in to comment.

More Answers (0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!