main.cpp
Go to the documentation of this file.
1 #include "apps/x001.h"
2 #include "apps/x002.h"
3 #include "apps/x003.h"
4 #include "apps/x004.h"
5 #include "apps/x005.h"
6 #include "apps/x006.h"
7 #include "apps/x007.h"
8 #include "apps/x008.h"
9 #include "apps/x009.h"
10 #include "apps/x010.h"
11 #include "apps/x012.h"
12 #include "apps/x014.h"
13 #include "apps/x015.h"
14 #include "apps/x016.h"
15 #include "apps/x017.h"
16 #include "apps/x018.h"
17 #include "apps/x020.h"
18 #include "apps/x021.h"
19 #include "apps/x023.h"
20 #include "apps/x024.h"
21 #include "apps/x025.h"
22 #include "apps/x026.h"
23 #include "apps/x027.h"
24 #include "apps/x028.h"
25 #include "apps/x029.h"
26 #include "apps/x030.h"
27 #include "apps/x031.h"
28 #include "apps/x032.h"
29 #include "apps/x033.h"
30 #include "apps/x034.h"
31 #include "apps/x036.h"
32 #include "apps/x037.h"
33 #include "apps/x038.h"
34 #include "apps/x039.h"
35 #include "apps/x040.h"
36 #include "apps/x1200.h"
37 #include "apps/x130.h"
38 #include "apps/x1500.h"
39 #include "apps/x1800.h"
40 #include "apps/x1900.h"
41 #include "apps/x200.h"
42 #include "apps/x2000.h"
43 #include "apps/x2010.h"
44 #include "apps/x410.h"
45 #include "apps/x710.h"
46 #include "apps/x900.h"
47 #include "apps/x9000.h"
48 #include "apps/x910.h"
49 #include "apps/x9100.h"
50 #include "gsl/gsl_errno.h"
51 #include "apps/cpp.h"
52 #include <iostream>
53 
54 int main(int argc, char *argv[]) {
55  (void) argc;
56  (void) argv;
57 
58  try {
59  //Harmonische Schwingung eines Feder-Massen-Systems
61  } catch (int n) {
62  std::cerr << gsl_strerror(n) << std::endl;
63  } catch (const std::runtime_error &err) {
64  std::cerr << err.what() << std::endl;
65  } catch (const std::exception &err) {
66  std::cerr << err.what() << std::endl;
67  } catch (...) {
68  std::cerr << "unknown error" << std::endl;
69  }
70 }
void run()
run Harmonische Schwingung eines Feder-Massen-Systems Berechnung von Beispieldaten ...
Definition: x900.h:180
int main(int argc, char *argv[])
Definition: main.cpp:54