How to find the derivative of one output quantity with respect to another output quantity
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to consult that how to find the derivative of one output quantity with respect to another output quantity. For example, output module 1 is force and output module 2 is time, and I want to find the derivative of module 1 with respect to module 2. Thank you for your help.
0 commentaires
Réponses (2)
Chunru
le 8 Juil 2022
x = 0:32;
y = sin(2*pi*x/16);
d = gradient(y)./gradient(x);
plot(x, y, 'r-', x, d, 'b-')
0 commentaires
John D'Errico
le 8 Juil 2022
Basic calculus. Each module must be a function of SOMETHING else, thu some other parameter. What parameter is controlling them? For example, suppose I have two modules.
Use this basic rule for differentiation:
dx/dy = (dx/dt)/(dy/dt)
Now lets try it. I'll make up some arbitrary relations to put in the two modules.
module1 = @(p) sin(p);
module2 = @(p) cos(p);
Suppose I want to compute the derivative of module1, with respect to module 2, at the point where p=1.
dp = 1e-8;
p0 = 1;
dm1dm2 = ((module1(p0 + dp) - module1(p0))/dp) / ((module2(p0 + dp) - module2(p0))/dp)
0 commentaires
Voir également
Catégories
En savoir plus sur Modulation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!