| 598 | } |
| 599 | |
| 600 | double log(double base, double x) |
| 601 | { |
| 602 | return std::log(x) / std::log(base); |
| 603 | } |
| 604 | |
| 605 | // Enumerates all permutations |
| 606 | std::vector<std::vector<double>> linspace(std::vector<double> start, std::vector<double> end, std::vector<unsigned int> points) |
no outgoing calls
no test coverage detected