How to use delta operator in Matlab?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Star Strider
2021 年 2 月 18 日
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!
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!