필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

i want to make GUI for this code, only one push button and one axis. code is given in body

조회 수: 1 (최근 30일)
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
Martin Schätz
Martin Schätz 2015년 10월 17일
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.

답변 (1개)

Jan
Jan 2015년 10월 17일
You have a figure with 1 axes already, so all you need is to add a uicontrol('Style', 'Pushbutton') command.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by