
Doubt in MATLAB program
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Can anyone help to fix this error?

0 commentaires
Réponse acceptée
darova
le 8 Nov 2019
Here is the problem

Also you have y(1),y(2),y(3). It means that you have 3 initial condition values, also you should have 3 diff. equations
2 commentaires
darova
le 8 Nov 2019
Can you please show how you declare derivatives in form:
ff = y(1);
df = y(2);
% ...
phi = (6);
dphi = y(7);
Write your equations according to this:
f(1,1) = df;
f(2,1) = ddf;
f(3,1) = df + 1.333*df^2 - ff*ddf;
% ...
You have y(8) (8 values) but still have only 4 initial values 

Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

