필터 지우기
필터 지우기

Insert an element once in a listbox

조회 수: 2 (최근 30일)
Samah EL QASSAH
Samah EL QASSAH 2017년 11월 27일
댓글: KL 2017년 11월 27일
I wrote the following code that allows me to insert the word "Cab1" in a list once the condition is true
if (Output == 1)
str = get(handles.list_Update, 'string');
str = cellstr(str);
str{end+1} = 'Cab1';
set(handles.list_Update, 'String', str);
end
But I get the result below because the condition "Output = 1" is still true. I want to insert the word "Cab1" only once in the list even if Output remains at 1. Can a Brake help me to solve the problem otherwise how to do it?

답변 (1개)

KL
KL 2017년 11월 27일
Check if your string already existing in your listbox and make output false in that case?
Something like,
if (Output == 1)
str = get(handles.list_Update, 'string');
str = cellstr(str);
if find(ismember(str, 'cab1'))
output = 0;
else
str{end+1} = 'Cab1';
set(handles.list_Update, 'String', str);
end
end
  댓글 수: 2
Samah EL QASSAH
Samah EL QASSAH 2017년 11월 27일
Thanks KL for the help, yes, but I don't want to set the "Output" to 0
KL
KL 2017년 11월 27일
If you don't want to set the output to be zero, you can do nothing under the true case and simply return to your main routine.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by