필터 지우기
필터 지우기

how to increase function values through its derivetive

조회 수: 1 (최근 30일)
james sinos
james sinos 2021년 11월 24일
답변: Star Strider 2021년 11월 24일
we have a derivetive funtion df/dx .
i want to manipulate df/dx in a way to increase the values of the original function f(x) ,
in which way (or many ways if exists) should i move df/dx values in pupose to increase f(x) values .?
this is the graphe of the derivative df/dx throught x.
contexte: the increase of the f(x) throught its derivetive will serve me at the end to increase.
integral of f(x) along x.

답변 (1개)

Star Strider
Star Strider 2021년 11월 24일
Do some simple experiments to see what produces the desired result —
syms k x
dx1 = 2*x; % Original Derivative
Idx1 = int(dx1) % Original Function
Idx1 = 
dx2 = k*dx1;
Idx2 = int(dx2) % Multiplies Original Function
Idx2 = 
dx3 = k + dx1;
Idx3 = expand(int(dx3)) % Introduces Trend (Slope) Plus Offset To Original Function
Idx3 = 
Experiment with variations on these (Symbolic Math Toolbox required here) to determine what works best.
.

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by