![123.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247379/123.png)
Doubt in MATLAB program
1 次查看(过去 30 天)
显示 更早的评论
Can anyone help to fix this error?![matlab error.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247375/matlab%20error.jpeg)
![matlab error.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247375/matlab%20error.jpeg)
0 个评论
采纳的回答
darova
2019-11-8
Here is the problem
![123.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247379/123.png)
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 个评论
darova
2019-11-8
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 ![Untitled.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247392/Untitled.png)
![Untitled.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/247392/Untitled.png)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!