28 const size_t N = V.size();
29 for (
size_t i=0;i<N;i++)
32 if (i!=(N-1)) ret+=
",";
38 template <
typename Derived>
42 const size_t N = V.size();
43 for (
size_t i=0;i<N;i++)
46 if (i!=(N-1)) ret+=
",";
std::string sprintf_vector(const char *fmt, const std::vector< T > &V)
Generates a string for a vector in the format [A,B,C,...] to std::cout, and the fmt string for each v...
std::string BASE_IMPEXP format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
GLsizei const GLchar ** string
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
void printf_vector(const char *fmt, const std::vector< T > &V)
Prints a vector in the format [A,B,C,...] to std::cout, and the fmt string for each vector element...