How to hide text in axes?
조회 수: 2 (최근 30일)
이전 댓글 표시
How to hide text in axes.
This is my code,and it doesn't hide the a1 in checkbox.
I want to change the state of the text through the checkbox, but obviously it can't do it. What should i do?
function checkbox3_Callback(hObject, eventdata, handles)
[Nodelocation] = textread('observe/mdNodeLocationXY_axisforGUI2.txt');
WISETEST = fopen('observe/mdNodeLocationXY_axisforGUI2.txt', 'rt');
out = textscan(WISETEST, '%s', 'Delimiter',{' '});
checkbox3_value = get(handles.checkbox3, 'Value');
ab = out{1}(1:end);
a1= length(str2double(ab))/6;
a = [0:a1-1]';
b = num2str(a); c = cellstr(b);
a1 = text(Nodelocation(:,2), Nodelocation(:,3), c);
if checkbox3_value == 1
set(a1, 'Visible', 'on')
elseif checkbox3_value == 0
set(a1, 'Visible', 'off')
end
댓글 수: 3
Ahmed Anas
2020년 3월 14일
It is showing you the text or not? you are getting errors while hiding this, am i right?
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!