summaryrefslogtreecommitdiff
path: root/rk4.txt
blob: 7e46483fcb11662ea032e4c407b08c57df774ec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
               THE COEFFICIENTS OF RK4
            using the notation of Fehlberg, Bettis, Horn, et alia


  k	         a[k]

  0    0
  1    0.5
  2    0.5
  3    1


  k	         c[k]

  0    1/6
  1    1/3
  2    1/3
  3    1/6


 k     j	  ß[k,j] 

 1    0    0.5
 2    0    0
 2    1    0.5
 3    0    0
 3    1    0
 3    2    1