Home | Develop | Download | Contact
example_octave_show.cpp
1
28#include <cmath>
29#include <Pds/Ra>
30
31int main(void)
32{
33 unsigned int N=6;
34 Pds::Matrix A(N);
35
36 A.FillRandU(0,10);
37 A=Pds::Round(A+90*Pds::Eye(N));
38
39 A.Print("\nA:\n");
40
42 Pds::Octave::Plot::ConfMatrix(A,{-1,0,1,2,3,4},"testando.m","plot_ConfMatrix.png");
43 Pds::Octave::Plot::ConfMatrix(A,{"lab1","lab2","lab3","lab4","lab5","lab6"},"testando.m","plot_ConfMatrix_label.png");
44
45 double L=3;
46 N=64;
47 Pds::Vector x=Pds::LinSpace(-L,L,N);
48 Pds::Vector y=Pds::LinSpace(-L,L,N);
49 Pds::Matrix X,Y;
50
51 Pds::Meshgrid (x,y,X,Y);
53
54 Pds::Octave::Plot::Surf(X,Y,Z,"testando.m","surf_example.png");
55 Pds::Octave::Plot::Surf(Z,"testando.m","surf_example2.png");
56 Pds::Octave::Plot::SurfC(X,Y,Z,"testando.m","surfc_example.png");
57
58 return 0;
59}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96
La clase tipo Pds::Vector . Esta clase genera una matriz de Nlin lineas y 1 columna....
Definition: Vector.hpp:80
Pds::Matrix Peaks(unsigned int N, double L=3)
Crea una matriz de con datos correspondientes a la función , donde y .
bool Meshgrid(const Pds::Vector &SpaceX, const Pds::Vector &SpaceY, Pds::Matrix &X, Pds::Matrix &Y)
Crea una matriz e una , a partir de los datos en y , respectivamente.
Pds::Matrix Eye(unsigned int N)
Retorna una matriz con unos en la diagonal y el resto ceros.
Vector LinSpace(double start, double end, unsigned int N)
Retorna un vector con elementos desde start hasta end con N elementos.
Pds::Matrix Round(const Pds::Matrix &A)
Retorna el resultado de evaluar elemento a elemento la función round.
bool SurfC(const Pds::Matrix &X, const Pds::Matrix &Y, const Pds::Matrix &Z, const std::string &octfilename, const std::string &imgfilename)
Plot la matriz usando surfc.
unsigned int FontSize
Font size usado en el código octave. Por defecto:
bool Surf(const Pds::Matrix &X, const Pds::Matrix &Y, const Pds::Matrix &Z, const std::string &octfilename, const std::string &imgfilename)
Plot la matriz usando surf.
bool ConfMatrix(const Pds::Matrix &A, const std::vector< int > Label, const std::string &octfilename, const std::string &imgfilename)
Plot de la matriz de confusion.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed