Home | Develop | Download | Contact
example_matrix_assignment.cpp
1
45#include <iostream>
46#include <Pds/Ra>
47
48int main(void)
49{
51 Pds::Matrix B("1 2 3\n4 5 6\n7 8 9");
52
53 A.Print("\nA:\n");
54 B.Print("\nB:\n");
55
56 A.AddAssigAt(1,1,B);
57 A.Print("\nA:\n");
58
59 A.AddAssigAt(1,1,-3);
60 A.Print("\nA:\n");
61
62 A.AddRawAssigAt(1,1,+3);
63 A.Print("\nA:\n");
64
65 return 0;
66}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96
const std::string Matrix
Tag de un objeto de tipo Pds::Ra::Tag::Matrix.
Definition: RaDefines.hpp:402
void AddRawAssigAt(unsigned int lin, unsigned int col, double b)
Suma y acumula en si mismo (A), un valor b en un punto (lin,col)
Definition: Matrix.hpp:7313
bool AddAssigAt(unsigned int lin, unsigned int col, const Pds::Matrix &B)
Suma y acumula en si mismo (A), una matriz B desde un punto (lin,col) haciendo una intersección.
void Print(const std::string &str, unsigned int precision) const
Imprime en pantalla el contenido de la matriz después del texto indicado en str.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed