How to use delta operator in Matlab?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello everyone,
I am studying calculus of variations.
I did not found any function to describe the variation (or delta) operator in Matlab and the software interprets how to manipulate this operator in a function.
I only found the command "functionalDerivative", but it is not what I need.
Next, a picture to show what I mean. I tried to used functionalDerivative to calculate F and G as a syms function, but result was not as expected.

Here, an example of equation I need to use:

Thank you!
2 comentarios
Star Strider
el 18 de Feb. de 2021
Use the Symbolic Math Toolbox:
syms F(t) G(t) t
dFplusdG = diff(F+G)
dFG = diff(F*G)
dfoverG = diff(F/G)
producing respectively:



I leave the rest to you!
Respuestas (0)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!