Home | Develop | Download | Contact
example_matrix_fill.cpp
1
48#include <cmath>
49#include <Pds/Ra>
50
51int main(void)
52{
53 Pds::Matrix A(2,3);
54
55 A.Fill(-1);
56 A.Print("\nA:\n");
57
58 A.Fill(std::vector<int>({1,2,3,5,7}));
59 A.Print("\nA:\n");
60
61 A.FillId();
62 A.Print("\nA:\n");
63
64 A.FillLinSpace(0,22);
65 A.Print("\nA:\n");
66
67 A.FillRandU(-2,2);
68 A.Print("\nA:\n");
69
70 A.FillRandU(-2.0,2.0);
71 A.Print("\nA:\n");
72
73 A.FillBcd(10);
74 A.Print("\nA.FillBcd(10):\n");
75
76 A.FillBcd(16);
77 A.Print("\nA.FillBcd(16):\n");
78
79 A=255*Pds::Zeros(1007,507);
80 A.InitRegion(Pds::RegionRect(0,0,100,100),255);
81
82 A.ExportBmpFile(Pds::Colormap::Jet,"test.bmp");
83 Pds::Matrix::ExportBmpFile(A,A,A,"test2.bmp");
84 return 0;
85}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96
La estructura tipo Pds::RegionRect . Esta estructura genera una region. Para usar incluir <Pds/Region...
Definition: RegionRect.hpp:64
Pds::Matrix Zeros(const Pds::Size &S)
Retorna una matriz con ceros.
bool ExportBmpFile(const unsigned char colormap[256][3], const std::string &filepath) const
Escribe en una matriz en un archivo binario en formato BMP. Losdatos deben ir de 0 a 255,...
const unsigned char Jet[256][3]
Definition: Colormap.hpp:335

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed