How to have a implicit function of a symbolic variable in our expressions and calculations
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello,
Lets say I have
syms x y z
and I want to have the following expression
A=(3*x+5*y+3*z+5)*(f(x)+z)
and I am looking to find
diff(A,x)
where f(x) is a function of x and I want to find the derivate of A with respect to x. Is there a way to write f(x) so that when differentiating A ,it shows it as
?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/499073/image.png)
Appreciate any help.
Thanks a lot!
댓글 수: 0
채택된 답변
Birdman
2021년 1월 25일
Simply, you can define symbolic functions just like symbolic variables:
syms x y z f(x)
A=(3*x+5*y+3*z+5)*(f(x)+z);
diff(A,x)
ans =
3*z + 3*f(x) + diff(f(x), x)*(3*x + 5*y + 3*z + 5)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!