Borrar filtros
Borrar filtros

File 'ode1' not found.

3 visualizaciones (últimos 30 días)
Zouhir Bensebban
Zouhir Bensebban el 14 de Jun. de 2018
Comentada: Walter Roberson el 8 de Oct. de 2023
Hi guys, if I type this (type ode1) I'm going to make these mistakes! Error using type File 'ode1' not found. why? Thanks

Respuestas (2)

Walter Roberson
Walter Roberson el 15 de Jun. de 2018

Alvin
Alvin el 8 de Oct. de 2023
You can create one yourself, then you can type it.
function [yout] = ode1(F, t0, h, tfinal, y0)
% ODE1 is a simple ODE solver.
% dy/dt = F(t, y) with y(t0) = y0
y = y0;
yout = zeros((tfinal-t0)/h+1, 1); yout(1) = y0;
for t = t0+h : h : tfinal
s = F(t, y); % Slope
y = y + h * s; % from y(t) to y(t+h)
yout(round((t-t0)/h+1)) = y; % list of y's are recorded
end
end
  1 comentario
Walter Roberson
Walter Roberson el 8 de Oct. de 2023
You can, but in my answer I linked to some pre-written fixed-step ODE solvers supplied by Mathworks

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by