How to solve this fourier series/ boundary value on matlab?

1 visualización (últimos 30 días)
Suhayl Mlb
Suhayl Mlb el 4 de Jul. de 2020
Comentada: darova el 5 de Jul. de 2020
Can anyone tell me how to compute this on matlab? show the codes in step etc...
  2 comentarios
Suhayl Mlb
Suhayl Mlb el 4 de Jul. de 2020
Hi, Thanks for replying...but i don't know too much on matlab...never solved any fourier series on it... If possible can you write the steps to execute it? Thanks

Iniciar sesión para comentar.

Respuestas (1)

darova
darova el 4 de Jul. de 2020
here is a start
function res = f(t)
if t < 1
res = t;
elseif t < 2
res = 1;
else
res = 3-t;
end
end
and use ode45 to solve it
  3 comentarios
Suhayl Mlb
Suhayl Mlb el 4 de Jul. de 2020
I tried it but i got this:
darova
darova el 5 de Jul. de 2020
I only helped you with f(t) function. The rest is up to you
Read help: ode45

Iniciar sesión para comentar.

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by