a=62;
b=95;
y = @(x) (3*x.^2.*sin(a*x))./(x.^2+b);
dy = diff(y)
I don't know exactly how i need to calculate the derivative correctly.

 채택된 답변

KSSV
KSSV 2017년 4월 5일

0 개 추천

syms x
a=62;
b=95;
y = (3*x.^2.*sin(a*x))./(x.^2+b);
dy = diff(y)

추가 답변 (1개)

Torsten
Torsten 2017년 4월 5일

1 개 추천

syms a b x
y = (3*x^2*sin(a*x))/(x^2+b);
dy = diff(y,x)
Best wishes
Torsten.

카테고리

도움말 센터File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

질문:

2017년 4월 5일

답변:

2017년 4월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by