Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
i want to make GUI for this code, only one push button and one axis. code is given in body
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
if true
% code
end
close all;
clear all;
clc;
comport = serial('COM17', 'BaudRate', 9600);
fopen(comport);
x=0;
a=0;
b=0;
while(x<100)
x=fscanf(comport, '%d');
a=x(:,1);
b=x(:,2);
drawnow;
plot(a,b,'o');
end
fclose(comport);
1 comentario
Martin Schätz
el 17 de Oct. de 2015
And what is your question? If the GUI doesn't work, then it would be better to add the code and info about what doesn't work for you.
Respuestas (1)
Jan
el 17 de Oct. de 2015
You have a figure with 1 axes already, so all you need is to add a uicontrol('Style', 'Pushbutton') command.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!