#include <cstddef>
#include <vector>
Go to the source code of this file.
|
std::vector< double > | flexiblesusy::float_range (double start, double stop, std::size_t number_of_steps) |
| returns range of floating point values between start (included) and stop (excluded)
|
|
std::vector< double > | flexiblesusy::float_range_log (double start, double stop, std::size_t number_of_steps) |
| returns range of floating point values between start (included) and stop (excluded) with logarithmic spacing
|
|
std::vector< double > | flexiblesusy::subdivide (double start, double stop, std::size_t number_of_divisions) |
| returns range of (number_of_divisions + 1) floating point values between (including) start and (including) stop
|
|
std::vector< double > | flexiblesusy::subdivide_log (double start, double stop, std::size_t number_of_divisions) |
| returns range of (number_of_divisions + 1) floating point values between (including) start and (including) stop with logarithmic spacing
|
|