How to calculate derivative of function of inside of another function ?
1 次查看(过去 30 天)
显示 更早的评论
I can calculate g(-2) but I can not calculate g'(-2) at the same time with g(2). How can I write a function to calculate both of them in one function.
0 个评论
回答(1 个)
madhan ravi
2020-6-2
doc syms
doc diff
5 个评论
madhan ravi
2020-6-3
- You create a function
- Which takes in a function
- You evaluate it at a given point
- You differentiate that function at a given point (Hint: diff(...) )
Possible sources:
doc syms
doc diff
doc function
Lots of examples to go with the flow.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!