Integration with Symbolic Variables
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a problem like that. How can i solve this?

3 commentaires
Réponse acceptée
VBBV
le 12 Mai 2023
syms theta r
a=10;
x=a*(1-cos(theta));
y=a*(1-sin(theta));
r=sqrt(x^2+y^2)
I = vpaintegral(r,0,2*pi)
Plus de réponses (2)
Sulaymon Eshkabilov
le 12 Mai 2023
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)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
