Home | Develop | Download | Contact
test_matrix_apply2.cpp
1
21#include <cmath>
22#include <Pds/Ra>
23
24int main(void)
25{
26 Pds::Matrix A(3,2);
27
28 A.FillId();
29 A.Print("\nA:\n");
30
31 auto func=[](double x, const std::vector<double> &a)->double
32 {
33 if(a.size()>=2) return a[0]*x+a[1];
34 return 0;
35 };
36
37 A.Apply(func,{2,-1});
38 A.Print("\nA:\n");
39
40 A.Apply(2,A);
41 A.Print("\nA:\n");
42
43
44 return 0;
45}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed