Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Differential Equation problem. ~Please help

1 visualizzazione (ultimi 30 giorni)
Ben
Ben il 20 Mar 2013
Chiuso: MATLAB Answer Bot il 20 Ago 2021
Hi. I have the following code:
function dydx = vdp1(x,y)
dydx = [y(2);-y(1)];
And in another script I have the following code:
sol = ode45(@vdp1,[0 pi],[0;1]);
xint = pi;
Sxint = deval(sol,xint)
However I want to introduce a variable w so that the differential equation becomes:
dydx = [y(2);-(w^2)*y(1)];
and my result is in terms of w. I have been trying this for hours but to no avail. Any help would be great. Thanks
  1 Commento
Azzi Abdelmalek
Azzi Abdelmalek il 20 Mar 2013
is w variable or constant, if variable, how w is varying?

Risposte (0)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by