Integration with Symbolic Variables
Afficher commentaires plus anciens
Hi,
I have a problem like that. How can i solve this?

3 commentaires
Torsten
le 12 Mai 2023
What do you mean by "double integration problem" ? Is there a second integration variable apart from theta ?
Furkan KORKMAZ
le 12 Mai 2023
Dyuman Joshi
le 14 Mai 2023
@Furkan KORKMAZ please check the answers posted below.
Réponse acceptée
Plus de réponses (2)
Use integral() - see DOC
E.g.:
% Step 1. Create a function handle:
F = @(theta, a)sqrt((a*(1-cos(theta))).^2+(a*(1-sin(theta))).^2);
% Step 2. Compute the integral:
INT_F = integral(@(theta)F(theta, 10), 0, 2*pi)
1 commentaire
Furkan KORKMAZ
le 14 Mai 2023
Furkan KORKMAZ
le 14 Mai 2023
Modifié(e) : Furkan KORKMAZ
le 14 Mai 2023
0 votes
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
