source: ntrip/trunk/BNS/rungekutta4.h@ 882

Last change on this file since 882 was 882, checked in by mervart, 16 years ago

* empty log message *

File size: 239 bytes
Line 
1#ifndef RUNGEKUTTA4_H
2#define RUNGEKUTTA4_H
3
4#include <vector>
5
6std::vector<double> rungeKutta4(
7 double xi,
8 std::vector<double> yi,
9 double dx,
10 std::vector<double> (*derivatives)(double x, std::vector<double> y)
11);
12
13#endif
Note: See TracBrowser for help on using the repository browser.