39 std::vector<double> b;
52 std::ofstream myfile(
"VectorDouble1.xml", std::ofstream::out);
57 std::cout<<
"Pds::Ra::ExportVectorDoubleXmlToString(b):\n"<<str;
62 Pds::Ra::SaveStdVector<double>(c,
"test.txt");
bool VectorDoubleFillRandU(std::vector< double > &b, double begin, double end)
Números aleatorios con una distribución uniforme entre begin a end.
std::vector< double > VectorDoubleZero(unsigned int N)
Números zero.
std::vector< double > VectorDoubleRandU(unsigned int N, double begin, double end)
Números aleatorios con una distribución uniforme entre begin a end.
std::vector< double > VectorDoubleRandN(unsigned int N)
Números aleatorios con una distribución normal.
std::vector< double > ImportVectorDoubleXmlFromString(const std::string &str)
Carga el contenido de una std::vector<double> desde un std::string en formato Xml.
void PrintVectorDouble(std::vector< double > b)
Imprime un vector std::vector<double>.
std::string ExportVectorDoubleXmlToString(const std::vector< double > &Block)
Retorna un std::string en formato Xml con el contenido del VectorDouble.
bool ExportVectorDoubleXmlToStream(std::ofstream &myfile, const std::vector< double > &Block)
Retorna un std::string en formato Xml con el contenido del VectorDouble.