필터 지우기
필터 지우기

How to hide text in axes?

조회 수: 3 (최근 30일)
han han
han han 2020년 3월 14일
댓글: Ahmed Anas 2020년 3월 14일
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
han han
han han 2020년 3월 14일
This way nothing has changed :(
Ahmed Anas
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 CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by