arbitrary symbolic functions - Symbolic math toolbox
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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??
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Jun. 2013
A = 9/13; %arbitrary
syms x(t)
M = A * sin(x(t));
diff(M,t)
4 Kommentare
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!