how to plot 2D graph in GUI?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ramesha
el 12 de Abr. de 2014
Comentada: ramesha
el 14 de Abr. de 2014
i have two co-ordinates like x and y, I enter the values of x and y then how to plot in GUI? X Y 2 4 4 6 7 8 take the above values i plot the graph in GUI?
0 comentarios
Respuesta aceptada
Alberto
el 12 de Abr. de 2014
function exgui
fh = figure( 'units','pixels',... 'position',[50 ,50 , 600, 500]);
X=[2 4 7] Y=[4 6 8] h=plot(X,Y,'--r','LineWidth',1) ;
end
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!