Is there any way to solve this integration with loop?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Bajdar Nouredine
el 19 de Ag. de 2021
Comentada: Bajdar Nouredine
el 23 de Ag. de 2021
r = 1:10
t= 1: 10
0 comentarios
Respuesta aceptada
Walter Roberson
el 19 de Ag. de 2021
Yes, you could replace the following symsum() with a loop that totaled over m
syms m t r positive
syms r__prime real
Pi = sym(pi)
V_r_t = symsum(exp(m*Pi*t)*sin(m*Pi*r)*int(r__prime*sin(m*Pi*r),r__prime,0,1),m,1,10)
4 comentarios
Walter Roberson
el 20 de Ag. de 2021
syms m t r positive
syms r__prime real
Pi = sym(pi)
V_r_t = symsum(exp(m*Pi*t)*sin(m*Pi*r)*int(r__prime*sin(m*Pi*r),r__prime,0,1),m,1,10)
r_vec = 1:10;
t_vec = 1:10;
[R,T] = ndgrid(r_vec,t_vec);
V = subs(V_r_t, {r, t}, {R, T})
Reminder: sin(INTEGER*pi) is 0, and all of the terms of V_r_t have INTEGER*pi*r and all of your r are integer.
Más respuestas (0)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!