RefMatrix. More...
#include <iostream>
#include <iomanip>
#include "RefMatrix.h"
Go to the source code of this file.
Functions | |
| template<class E> | |
| bool | isSquare (const RefMatrix< E > &M) |
Retorna "true" si la matriz M es una matriz cuadrada. | |
| template<class E> | |
| bool | isSymmetric (const RefMatrix< E > &M) |
Retorna "true" si la matriz es simétrica. | |
| template<class E> | |
| void | print (const char *name, RefMatrix< E > &V) |
Imprime por filas el valor de "M". | |
| void | use_lkptr (unsigned M, unsigned N) |
Ejemplo de uso de referencia lkptr< RefMatrix<unsigned> >. | |
| int | main () |
| Programa que ejercita las principales funciones de las matrices. | |
RefMatrix.
Definition in file test_RefMatrix.cpp.
| bool isSquare | ( | const RefMatrix< E > & | M | ) | [inline] |
Retorna "true" si la matriz M es una matriz cuadrada.
Definition at line 22 of file test_RefMatrix.cpp.
| bool isSymmetric | ( | const RefMatrix< E > & | M | ) | [inline] |
| void print | ( | const char * | name, | |
| RefMatrix< E > & | V | |||
| ) | [inline] |
| void use_lkptr | ( | unsigned | M, | |
| unsigned | N | |||
| ) |
Ejemplo de uso de referencia lkptr< RefMatrix<unsigned> >.
Definition at line 56 of file test_RefMatrix.cpp.
| int main | ( | ) |
Programa que ejercita las principales funciones de las matrices.
Definition at line 82 of file test_RefMatrix.cpp.
1.5.6