OpenNN
Open-source neural networks library
Loading...
Searching...
No Matches
neural_designer_utilities.h
Go to the documentation of this file.
1#pragma once
2
3#include "pch.h"
4
5namespace opennn
6{
7
9void sort_string_vector(vector<string>&);
10
12vector<string> concatenate_string_vectors(const vector<string>&, const vector<string>&);
13
15string formatNumber(float, int);
16
18float round_to_precision(float, const int&);
19
20}
Definition adaptive_moment_estimation.h:14
void sort_string_vector(vector< string > &)
Sorts a vector of strings in place in ascending lexicographical order.
vector< string > concatenate_string_vectors(const vector< string > &, const vector< string > &)
Concatenates two string vectors and returns the resulting vector.
string formatNumber(float, int)
Formats a floating point number as a string using the given number of decimal digits.
float round_to_precision(float, const int &)
Rounds the given floating point value to the requested number of significant digits.