Solve a integral equation

1 visualización (últimos 30 días)
Yadong Chen
Yadong Chen el 20 de Oct. de 2021
Comentada: Saranya S el 9 de Dic. de 2021
I would like to solve this equation in MATLAB
,
we know and and
  3 comentarios
Saranya S
Saranya S el 9 de Dic. de 2021
syms t s;
f=-1.25+3.5*t*exp(-2*t)+1.25*exp(-2*t)
f =
(5*exp(-2*t))/4 + (7*t*exp(-2*t))/2 - 5/4
f=laplace(f);
simplify(f);
pretty(ans)
Saranya S
Saranya S el 9 de Dic. de 2021
Fourier Transform
syms a t;
x= a*abs(t);
x= fourier(x);
x1= fourier(x,y);
x2=fourier(x,t,y);
disp('1.Fourier Transform of a*abs:')
disp(x);
disp(x1);
disp(x2);

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 20 de Oct. de 2021
Q = @(v) sym(v);
syms t C real
alpha = Q(2);
sigma = Q(0.4);
Pi = Q(pi);
f(t) = exp(-(log(t)^2/(2*sigma^2)))/(t * sigma * sqrt(2*Pi))
f(t) = 
eqn = C - int((t-alpha*C)*f(t), t, alpha*C, inf)
eqn = 
SE = simplify(eqn)
SE = 
C_sol = vpasolve(SE, C)
C_sol = 
0.3721630585289762803836642354681
subs(eqn, C, C_sol)
ans = 
vpa(ans)
ans = 

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by