Integration with Symbolic Variables

6 Ansichten (letzte 30 Tage)
Furkan KORKMAZ
Furkan KORKMAZ am 12 Mai 2023
Kommentiert: Furkan KORKMAZ am 14 Mai 2023
Hi,
I have a problem like that. How can i solve this?
  3 Kommentare
Furkan KORKMAZ
Furkan KORKMAZ am 12 Mai 2023
Sorry, this is my wrong. Firstly, i was thinking double integration but after that i was simplfy my problem like that.
Dyuman Joshi
Dyuman Joshi am 14 Mai 2023
@Furkan KORKMAZ please check the answers posted below.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

VBBV
VBBV am 12 Mai 2023
syms theta r
a=10;
x=a*(1-cos(theta));
y=a*(1-sin(theta));
r=sqrt(x^2+y^2)
r = 
I = vpaintegral(r,0,2*pi)
I = 
100.367

Weitere Antworten (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 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)
INT_F = 100.3668

Furkan KORKMAZ
Furkan KORKMAZ am 14 Mai 2023
Bearbeitet: Furkan KORKMAZ am 14 Mai 2023
Thank you for your answers. However, I think I'm getting erroneous results because of the information I gave incomplete. I'm correcting my question.

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by