Solving system of ODEs using Euler's method and 4 th order Runge Kutta method.
Afficher commentaires plus anciens
Hi, im going to ask how to solve this problem?
Using time step, ℎ = 0.2, solve the model using Euler method and 4 th order Runge Kutta method. Plot the solutions

Réponses (1)
Gargi Patil
le 2 Sep 2021
Hi,
The given code throws the error "Array indices must be positive integers or logical values.". The code in the if-else is written for Heaviside as an array rather than a function making (y(1) - a) an index value. Indices for an array can only be integers while the given index value is a fractional value.
This can be resolved by creating a user-defined function as follows:
function y = Heaviside(x)
if x < 0
y = 0;
else
y = 1;
end
end
Furthermore, the plot command will also throw an error as the property LineWidth expects positive numerical values. The code can be rectified by removing the property LineWidth or specifying a numeric value for it as follows:
plot(t,y(1),'b.',t,y(2),'r.');
%or
plot(t,y(1), 'b.',t,y(2), 'r.', 'LineWidth', 5);
For further information about code for solving ODEs using Runge-Kutta 4th Order Metod and Euler's Method, you can refer to the following resources:
Catégories
En savoir plus sur Ordinary Differential Equations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!