About integration on matlab 2018b

How can i integrate a function using a parameter and the result containinng this parameter?

답변 (1개)

Rushil
Rushil 2025년 1월 31일

0 개 추천

Hi there
From the question I assume that the task is to compute the indefinite integral of a function with respect to a certain variable. This can be accomplished using the “int” function. More details about this function can be found here:
The documentation for the “int” function states that it was introduced before R2006a. Also, here is an example from the documentation that shows its usage:
syms x z
f(x,z) = x/(1+z^2);
F = int(f,x) % integrate f with respect to x
F(x, z) = 
Hope it helps you
larush

카테고리

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

태그

질문:

2021년 6월 12일

답변:

2025년 1월 31일

Community Treasure Hunt

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

Start Hunting!

Translated by