How can I solve the following integral equation

1 visualización (últimos 30 días)
parham kianian
parham kianian el 20 de Abr. de 2020
Comentada: Ameer Hamza el 21 de Abr. de 2020
How can I solve the following integral equation in MATLAB numerically:
where:

Respuestas (1)

Ameer Hamza
Ameer Hamza el 20 de Abr. de 2020
Editada: Ameer Hamza el 20 de Abr. de 2020
Try this
A = @(t) t.^2; % equation of A w.r.t. t. A(t) = t^2 for example
% f as function of t and w
f = @(t,w) A(t).*cos(w.*t) + integral(@(tau) w.*A(tau).*sin(w.*tau), 0, t);
Evaluate it like this
t = 10;
w = 2;
y = f(t,w);
>> y
y =
8.8335
  2 comentarios
parham kianian
parham kianian el 21 de Abr. de 2020
Function A(t) is unknown not f(t). I need to evaluate A(t).
Ameer Hamza
Ameer Hamza el 21 de Abr. de 2020
Can you share the expression for f(t)?

Iniciar sesión para comentar.

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by