irafhy
Interval arithmetic based Reachability Analysis Framework for Hybrid Automaton
plotter.h
Go to the documentation of this file.
1 #ifndef UTILITY_PLOTTER_H
2 #define UTILITY_PLOTTER_H
3 
5 #include <vector>
6 #include <cmath>
7 
8 namespace irafhy
9 {
10  class Plotter
11  {
12  public:
19  static void plot(const std::vector<capd::interval>& timeSequence = {},
20  const std::vector<IntervalHull>& intervalHulls = {},
21  const std::vector<std::size_t>& dimensions = {});
22  };
23 } // namespace irafhy
24 #endif //UTILITY_PLOTTER_H
Definition: plotter.h:10
Definition: condition.cpp:3
static void plot(const std::vector< capd::interval > &timeSequence={}, const std::vector< IntervalHull > &intervalHulls={}, const std::vector< std::size_t > &dimensions={})
plot the given information
Definition: plotter.cpp:6