How to set up a function

조회 수: 2 (최근 30일)
Christian Neumann
Christian Neumann 2021년 5월 28일
편집: Torsten 2021년 5월 29일
Hi, how am I supposed to get the function working and typed in Matlab?
All of the variables are known except for V(t')dt'. This one should be integrated in a 200 seconds (t) period.
Well, I got some experience with coding but I really got no idea how to start with this. Thanks in advance!

답변 (2개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 5월 28일
Hi,
There are a few built-in functions of integral in MATLAB, such as int() - symbolic, integral(), quad() - numerical integration.
Or you can write your own code of mid-point, Trapezoidal, or other methods.
One important point here is the expression of V has to be pre-defined.
Good luck.

Torsten
Torsten 2021년 5월 28일
편집: Torsten 2021년 5월 29일
Differentiating your equation with respect to t gives the differential equation
V'(t) = Qdot/(m*R_s*T) * V(t)
with solution
V(t) = V0*exp(Qdot/(m*R_s*T) * t)
With this explicit function definition for V, you can easily plot it.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by