Borrar filtros
Borrar filtros

Why does my code get stuck when trying to convert a double integral into a double?

1 visualización (últimos 30 días)
syms x y z
f(x,y) = sqrt(1+((4*y)/(121*sqrt((4*x^2)/121 + (4*y^2)/121))^2)+((4*x)/(121*sqrt((4*x^2)/121 + (4*y^2)/121))^2))
minX= -sqrt(220.523)
maxX= sqrt(220.523) %input("Limite superior de X:")
intX = int(f,x,minX,maxX)
minY= -sqrt(220.523-x^2) %input("Limite inferior de Y:")
maxY= sqrt(220.523-x^2) %input("Limite superior de Y:")
intY = int(f,y,minY,maxY)
integralDobleTipoUno = int(intY,x,minX,maxX)
integralDobleTipoDos= int(intX,y,minY,maxY)
var = double(integralDobleTipoUno)
When reaching "var", it loads forever

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Mayo de 2023
if you are after the numeric solution then switch to vpaintegral()
  8 comentarios
Guillermo
Guillermo el 5 de Mayo de 2023
Editada: Guillermo el 5 de Mayo de 2023
Crazy to think evven my CPU can make a difference, although it makes sense. Anyhow, thank you so much!
Walter Roberson
Walter Roberson el 5 de Mayo de 2023
format long g
syms x y z
magic_number = sym(220523)/1000;
f(x,y) = sqrt(1+((4*y)/(121*sqrt((4*x^2)/121 + (4*y^2)/121))^2)+((4*x)/(121*sqrt((4*x^2)/121 + (4*y^2)/121))^2));
maxX = sqrt(magic_number); %input("Limite superior de X:")
minX = -maxX;
intX = int(f,x,minX,maxX);
maxY = sqrt(magic_number-x^2); %input("Limite superior de Y:")
minY = -maxY;
intY = int(f,y,minY,maxY);
Sf = simplify(f, 'steps', 50)
Sf(x, y) = 
Tx = 0; Ty = -1/200;
combine(subs(maxY, x, Tx))
ans = 
That tells us that for x = 0, that y = -1/200 is well within range
temp = simplify(limit(f, x, Tx), 'steps', 50)
temp(y) = 
y_bound = solve(children(temp, 1))
y_bound = 
limit(limit(f, x, Tx), y, Ty)
ans = 
but we got a complex-valued result.
This tells us that the complex component we got was not an accident: there is a range of values where f goes complex.

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by