About integration on matlab 2018b

2 visualizaciones (últimos 30 días)
rasha atwa
rasha atwa el 12 de Jun. de 2021
Respondida: Rushil el 31 de En. de 2025
How can i integrate a function using a parameter and the result containinng this parameter?

Respuestas (1)

Rushil
Rushil el 31 de En. de 2025
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

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by