Home | Develop | Download | Contact
test_cmatrix_create.cpp
1 
20 #include <Pds/Ca>
21 
22 int main(void)
23 {
24  Pds::CMatrix A(2,2,3,4);
25  Pds::CMatrix B(2,2,1,1);
26  Pds::CMatrix R;
27 
28  A.Print("\nA:\n");
29  B.Print("\nB:\n");
30  R.Print("\nR:\n");
31 
32  R.Copy(A);
33  R.Print("\nR:\n");
34 
35  Pds::CMatrix C;
36  std::cout<<"\nTest:\n";
37  C=B;
38  C.Print("\nC:\n");
39 
40  return 0;
41 }
La clase tipo Pds::CMatrix . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: CMatrix.hpp:63
bool Copy(const Pds::CMatrix &A)
Copia los datos de la matriz.
void Print(std::string str="") const
Muestra en pantalla el contenido de Pds::CMatrix, elementos separados por tabulador.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed