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

1 vue (au cours des 30 derniers jours)
Francesco Lasco
Francesco Lasco le 30 Mai 2018
Commenté : Francesco Lasco le 30 Mai 2018
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!

Réponse acceptée

Torsten
Torsten le 30 Mai 2018
function dydt= rf(~,y)
Best wishes
Torsten.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by