4th order non linear differential equation

3 visualizaciones (últimos 30 días)
kingcruises
kingcruises el 3 de En. de 2020
Respondida: Star Strider el 3 de En. de 2020
can any body help me with the matlab code
of this 4th order non linear differential equation
4th order.PNG
  2 comentarios
Star Strider
Star Strider el 3 de En. de 2020
Why not just use the same approach?
kingcruises
kingcruises el 3 de En. de 2020
I want to plot ode and not the sum of D ,D2f,D3f, D4f I want to plot the ode as one solution

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 3 de En. de 2020
I want to plot ode and not the sum of D ,D2f,D3f, D4f I want to plot the ode as one solution
Then try this (using my previous Answer):
[X,Y] = ode45(odefcn, [0 1], [0 1 -8 6]);
figure
plot(X, Y(:,1))
grid
That will plot only ‘f’.

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations 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!

Translated by