Clear Filters
Clear Filters

Hello, I want to derive from a function such as (f=f0+R*f1​+R^2*f2+R^​3*f3) so that the answer is as follows: (f'=f0'+R*​f1'+R^2*f2​'+R^3*f3')

2 views (last 30 days)
The values of the functions f are not given in x and we want to calculate the derivative parametric

Accepted Answer

Birdman
Birdman on 7 Jan 2018
syms f(x) f0(x) f1(x) f2(x) f3(x) R
fun=diff(f,x)==diff(f0,x)+R*diff(f1,x)+R^2*diff(f2,x)+R^3*diff(f3,x)

More Answers (0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!