Determine the intervals on which the function f(x) is increasing and decreasing
이전 댓글 표시
Hi there
I am struggeling to compute this
I need to get the intervals where f(x) is increasing rounded to 4 decimal values as output
I realise it will be where f'(x)>0 and f'(x)<0
this is what i got sofar:
clf
f = sinh(x.^2);
h = sqrt(cosh(x)-1);
fplot(diff(f)-diff(h))
grid on
ylim([-5 5])
xlim([-5 5])
채택된 답변
추가 답변 (1개)
tarun Kumar v
2021년 11월 26일
clf
f = sinh(x.^2);
h = sqrt(cosh(x)-1);
fplot(diff(f)-diff(h))
grid on
ylim([-5 5])
xlim([-5 5])
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


