How can i avoid this error: 'Index exceeds array bounds.' in my code?

1 次查看(过去 30 天)
clear all;
close all;
clc;
%Rabinovich–Fabrikant equations
t0 = 0;
tf = 100;
y0 = [1 1 1]';
[t,y]=ode23(@rf,t0:0.01:tf,y0);
comet3(y(:,1),y(:,2),y(:,3));
function dydt= rf(y,~)
%parametri
alf=1.1;
gamm=0.87;
dydt = [y(2)*(y(3)-1+y(1)^2)+gamm*y(1);...
y(1)*(3*y(3)+1-y(1)^2)+gamm*y(2);...
-2*y(3)*(alf+y(1)*y(2))];
end
I keep getting the former error even if i don't use an index greater than 3, and i defined the y0 vector with three elements in it. Thanks for your help!

采纳的回答

Torsten
Torsten 2018-5-30
function dydt= rf(~,y)
Best wishes
Torsten.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by