Home | Develop | Download | Contact
test_vector_sorting.cpp
1 
9 #include <Pds/Ra>
10 #include <cmath>
11 
12 int main(void)
13 {
14  Pds::Matrix B(5,3);
15  B.FillId();
16  B.Print("B:\n");
17 
18  Pds::Vector A(5);
19  A.FillRandU(0,20);
20  A.Print("A:\n");
21 
22  A.SortWith(B);
23  A.Print("A:\n");
24  B.Print("B:\n");
25 
26  return 0;
27 }
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:86
La clase tipo Pds::Vector . Esta clase genera una matriz de Nlin lineas y 1 columna....
Definition: Vector.hpp:78

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed