forked from MatiasMorsa/TP-MatematicaSuperior-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraficar_matriz2.m
27 lines (20 loc) · 885 Bytes
/
graficar_matriz2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
function graficar_matriz2(algo,nombre,estring)
%
pantallaTabla = figure('Name','Detalle del calculo de datos','MenuBar','none','Position',[100 100 600 500]);
%set(pantallaTabla,'Units','normalized');
t = uitable(pantallaTabla,'Data',algo,'Position',[100 200 500 200]);
t.ColumnName = nombre;
texto = uicontrol('parent',pantallaTabla,'Position',[10,10,400,100],'Style','Text','String',estring,'ForegroundColor',[0 0 0],'BackgroundColor', [.94 .94 .94]);
end
%funcion devolvery recibe una matriz de la manera [[x] [y]] y devuelve un vector con los valores y
function y = devolvery(matris)
matris = transpose( matris);
y = matris(2,:);
return
end
%funcion devolverx recibe una matriz de la manera [[x] [y]] y devuelve un vector con los valores x
function x = devolverx(matris)
matris = transpose( matris);
x = matris(1,:);
return
end