-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathresetall.m
More file actions
65 lines (51 loc) · 1.71 KB
/
resetall.m
File metadata and controls
65 lines (51 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
function resetall(handles)
% Clear plot
colormap('default')
axes(handles.axes1);
cla(handles.axes1);
axis auto
title('')
xlabel('')
ylabel('')
legend('off')
colorbar('hide')
% set(handles.axes1,'XScale','linear','YScale','linear')
% % off the log option
% set(handles.xlog,'Value',0,'Visible','on')
% set(handles.ylog,'Value',0,'Visible','on')
% off the marker type legend
set(handles.legendpanel,'Visible','off')
%set(handles.legendtable,'Visible','off')
% off the marker color legend
set(handles.legendpanel2,'Visible','off')
%set(handles.legendtable2,'Visible','off')
% off the marker size legend
set(handles.legendpanel3,'Visible','off')
%set(handles.mintext2,'Visible','off')
%set(handles.maxtext2,'Visible','off')
%set(handles.minedit2,'Visible','off')
%set(handles.maxedit2,'Visible','off')
%set(handles.legendtext2,'Visible','off')
% off the colorbar range legend
set(handles.rangepanel,'Visible','off')
%set(handles.mintext,'Visible','off')
%set(handles.maxtext,'Visible','off')
%set(handles.minedit,'Visible','off')
%set(handles.maxedit,'Visible','off')
% off refine button
% set(handles.refinebutton,'Visible','off')
% on the plot button
set(handles.plotbutton,'Visible','on')
% off the apply changed button
set(handles.applychangebutton,'Visible','off')
% off the tracer cursor
set(handles.selectpoint,'Enable','on','State','off')
% reset table title and visibility
set(handles.uipanel2,'Title','Parameters Included','Visible','on')
% set enable of uitable2
set(handles.uitable2,'Enable','on')
% set refine checkbox and real-time refinement checkbox
% set(handles.checkboxrefine,'Value',0,'Enable','on')
% set(handles.realtimecheckbox,'Value',0,'Enable','off')
% off the choosepanel
set(handles.choosepanel,'Visible','off')