arbitrary symbolic functions - Symbolic math toolbox

I have an equation:
M = A sin(x(t));
and would like to find: dM/dt
is it possible to create symbolic functions without definition? for x(t) I dont have a definition. But I require:
diff(M,t).
How can an arbitrary symbolic function be declared??

 Réponse acceptée

A = 9/13; %arbitrary
syms x(t)
M = A * sin(x(t));
diff(M,t)

4 commentaires

syms x(t) ??? Error using ==> syms at 61 Not a valid variable name.
I can declare symbolic variables but cannot declare symbolic functions. why could this be?
You must have an older version of MATLAB.
2010b. I'll try a newer version. Thanks!
yep it is, 2012a works.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by