How to use delta operator in Matlab?
조회 수: 2 (최근 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!