E
Followers: 0 Following: 0
Estadística
3 Preguntas
0 Respuestas
CLASIFICACIÓN
233.258
of 295.527
REPUTACIÓN
0
CONTRIBUCIONES
3 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.242
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.057
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
I have 4 step Adams - Bashforth method code. It works. But the results are bad. And plot function gives an error
f = @(t, y) cos(2*t + y) + (3/2)*(t - y); y0 = 1; a = 0; b = 1; N0 = 10; p = 4; % 4-step Adams-Bashforth j = 1; for k = 0...
10 meses hace | 1 respuesta | 0
1
respuestaPregunta
I have symmetric Euler method. Error ratio with Runge - Kuta rule should be approximately 4. But I get 2. The order is p=2.
Symmetric_Euler_Method() function results_table = Symmetric_Euler_Method() y0 = newton(@(y) y - 1, 1, 1e-6); x0 = 0; xN = ...
10 meses hace | 1 respuesta | 0
1
respuestaPregunta
Change BDF 2 step method into BDF 4 step method
%% 2step BDF method f =@(t, y) cos(2*t + y) + (3/2)*(t - y); y0= 1; a = 0; b = 1; N0= 10; p =...
11 meses hace | 1 respuesta | 0